From 21a0b4e939189519e05b7982060e021aa7f29dfd Mon Sep 17 00:00:00 2001 From: nagatomi Date: Wed, 25 Sep 2024 11:13:35 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B5=E3=83=96=E3=82=BF=E3=82=A4=E3=83=97?= =?UTF-8?q?=E3=81=AE=E5=85=A5=E5=8A=9B=E9=A0=85=E7=9B=AE=E3=81=8B=E3=82=89?= =?UTF-8?q?=E3=81=8B=E3=82=89=E3=83=97=E3=83=AC=E3=83=BC=E3=83=B3=E3=81=AA?= =?UTF-8?q?=E5=85=A5=E5=8A=9B=E9=A0=85=E7=9B=AE=E5=A4=89=E6=9B=B4=E3=81=97?= =?UTF-8?q?=E3=81=9F=E6=99=82=E6=88=BB=E3=82=89=E3=81=AA=E3=81=84=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- json/input-types.json | 4 ++-- src/components/html/Textarea.jsx | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/json/input-types.json b/json/input-types.json index 7a869f0..850ba95 100644 --- a/json/input-types.json +++ b/json/input-types.json @@ -2,7 +2,7 @@ "text": { "label": "テキスト", "subTypes": [ - { "value": "", "label": "--" }, + { "value": "text", "label": "--" }, { "value": "tel", "label": "電話" }, { "value": "number", "label": "数値" }, { "value": "email", "label": "メール" }, @@ -12,7 +12,7 @@ "textarea": { "label": "テキストエリア", "subTypes": [ - { "value": "", "label": "--" }, + { "value": "textarea", "label": "--" }, { "value": "lite-editor", "label": "ライトエディター" } ] }, diff --git a/src/components/html/Textarea.jsx b/src/components/html/Textarea.jsx index ecd6301..37cbfc6 100644 --- a/src/components/html/Textarea.jsx +++ b/src/components/html/Textarea.jsx @@ -29,6 +29,7 @@ export function Textarea(props) { {isValue ? `{${item.name}}` : ''} + )}