From ca7d9b1cfb6e5d2486ecc0dea1c80dee1eb3e131 Mon Sep 17 00:00:00 2001 From: yamakeeeeeeeeen Date: Thu, 9 May 2024 17:40:12 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E3=83=80=E3=82=A4=E3=82=A2=E3=83=AD?= =?UTF-8?q?=E3=82=B0=E3=81=AE=E6=A8=AA=E5=B9=85=E3=81=AB=E5=A4=89=E3=81=AA?= =?UTF-8?q?=E4=BD=99=E7=99=BD=E3=81=8C=E3=81=82=E3=82=8B=E3=81=AE=E3=81=A7?= =?UTF-8?q?=E5=B9=85=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/teams/_rename_dialog.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/teams/_rename_dialog.html.erb b/app/views/teams/_rename_dialog.html.erb index 39db2442..fbc60935 100644 --- a/app/views/teams/_rename_dialog.html.erb +++ b/app/views/teams/_rename_dialog.html.erb @@ -15,7 +15,7 @@ <% end %> -
+
<%= f.text_area :name, class: "border opacity-100 rounded-md border border-[rgb(214,211,208)] bg-white p-2 text-[rgb(35,34,30)] w-full", data: { "word-counter-target": "source", action: "input->word-counter#calc" } %>
/<%= team_name_max_length %> @@ -31,4 +31,4 @@
<% end %> <% end %> - \ No newline at end of file + From 58c34a4e7161d870c033a68fb36fd8c33539bf11 Mon Sep 17 00:00:00 2001 From: yamakeeeeeeeeen Date: Thu, 9 May 2024 17:46:09 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20sm:w-[656px]=20=E3=81=AF=E4=B8=8D?= =?UTF-8?q?=E8=A6=81=E3=81=AA=E3=81=AE=E3=81=A7=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/plans/_description_dialog.html.erb | 4 ++-- app/views/plans/_password_dialog.html.erb | 4 ++-- app/views/plans/_rename_dialog.html.erb | 4 ++-- app/views/plans/_setting_dialog.html.erb | 4 ++-- app/views/profiles/_dialog.html.erb | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/views/plans/_description_dialog.html.erb b/app/views/plans/_description_dialog.html.erb index 990d2002..e19c4f3a 100644 --- a/app/views/plans/_description_dialog.html.erb +++ b/app/views/plans/_description_dialog.html.erb @@ -6,7 +6,7 @@

<%= I18n.t('description.form_titme') %>

-
+
<%= f.text_area :description, class: "border opacity-100 rounded-md border border-[rgb(214,211,208)] bg-white p-2 text-[rgb(35,34,30)] w-full", data: { "word-counter-target": "source", action: "input->word-counter#calc" } %>
/<%= plan_description_max_length %> @@ -21,4 +21,4 @@
<% end %> - \ No newline at end of file + diff --git a/app/views/plans/_password_dialog.html.erb b/app/views/plans/_password_dialog.html.erb index 5435db3b..ff10538b 100644 --- a/app/views/plans/_password_dialog.html.erb +++ b/app/views/plans/_password_dialog.html.erb @@ -5,7 +5,7 @@

<%= I18n.t('settings.title') %>

-
+
<%= f.label :password, I18n.t('dialog.input_password'), class: "text-[rgb(112,109,101)] font-bold" %>
@@ -21,4 +21,4 @@
<% end %> - \ No newline at end of file + diff --git a/app/views/plans/_rename_dialog.html.erb b/app/views/plans/_rename_dialog.html.erb index c79a85d1..9952888f 100644 --- a/app/views/plans/_rename_dialog.html.erb +++ b/app/views/plans/_rename_dialog.html.erb @@ -6,7 +6,7 @@

<%= I18n.t('dialog.edit_title') %>

-
+
<%= f.text_area :title, class: "border opacity-100 rounded-md border border-[rgb(214,211,208)] bg-white p-2 text-[rgb(35,34,30)] w-full", data: { "word-counter-target": "source", action: "input->word-counter#calc" } %>
/<%= plan_title_max_length %> @@ -21,4 +21,4 @@
<% end %> - \ No newline at end of file + diff --git a/app/views/plans/_setting_dialog.html.erb b/app/views/plans/_setting_dialog.html.erb index 6bf0adec..f904bd35 100644 --- a/app/views/plans/_setting_dialog.html.erb +++ b/app/views/plans/_setting_dialog.html.erb @@ -4,7 +4,7 @@

<%= I18n.t('settings.title') %>

-
+
<%= f.label :password, I18n.t('settings.set_password'), class: "text-[rgb(112,109,101)] font-bold" %>
<%= I18n.t('settings.password_expression') %>
@@ -41,4 +41,4 @@
<% end %> - \ No newline at end of file + diff --git a/app/views/profiles/_dialog.html.erb b/app/views/profiles/_dialog.html.erb index e2c2943e..8f4e6a32 100644 --- a/app/views/profiles/_dialog.html.erb +++ b/app/views/profiles/_dialog.html.erb @@ -5,7 +5,7 @@

<%= I18n.t('dialog.edit_introduce') %>

-
+
<%= f.text_area :introduce, class: "border opacity-100 rounded-md border border-[rgb(214,211,208)] bg-white p-2 text-[rgb(35,34,30)] w-full", data: { "word-counter-target": "source", action: "input->word-counter#calc" } %>
/<%= profile_introduce_max_length %> @@ -20,4 +20,4 @@
<% end %> - \ No newline at end of file + From 35de55fa11f27be9f420ee2928115115ff10b0cd Mon Sep 17 00:00:00 2001 From: yamakeeeeeeeeen Date: Thu, 9 May 2024 18:09:44 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20sm:w-[656px]=20=E3=81=AF=E4=B8=8D?= =?UTF-8?q?=E8=A6=81=E3=81=AA=E3=81=AE=E3=81=A7=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/schedules/_card.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/schedules/_card.html.erb b/app/views/schedules/_card.html.erb index b1d5df9b..4fe6a5aa 100644 --- a/app/views/schedules/_card.html.erb +++ b/app/views/schedules/_card.html.erb @@ -65,7 +65,7 @@

<%= I18n.t('dialog.edit_memo', title: schedule.title) %>

-
+
<%= f.hidden_field :edit_memo_schedule_id, value: schedule.id %> <%= f.text_area :memo, value: @plan.plan_schedules.find { _1.schedule == schedule }&.memo, class: "border opacity-100 rounded-md border border-[rgb(214,211,208)] bg-white p-2 text-[rgb(35,34,30)] w-full", data: { "word-counter-target": "source", action: "input->word-counter#calc" } %>