diff --git a/app/views/shared/components/_room_block.html.erb b/app/views/shared/components/_room_block.html.erb index 8b97ba8a..6d3c9d68 100644 --- a/app/views/shared/components/_room_block.html.erb +++ b/app/views/shared/components/_room_block.html.erb @@ -15,7 +15,7 @@
diff --git a/app/views/shared/modals/_create_room_modal.html.erb b/app/views/shared/modals/_create_room_modal.html.erb
index 4ab6fa62..db6c5a12 100644
--- a/app/views/shared/modals/_create_room_modal.html.erb
+++ b/app/views/shared/modals/_create_room_modal.html.erb
@@ -36,7 +36,7 @@
<%= t("modal.create_room.auto_join") %>
<% end %>
diff --git a/app/views/shared/settings/_password.html.erb b/app/views/shared/settings/_password.html.erb
index 0a0fee5a..4d770dad 100644
--- a/app/views/shared/settings/_password.html.erb
+++ b/app/views/shared/settings/_password.html.erb
@@ -18,13 +18,13 @@
- <%= f.label t("settings.password.old"), class: "form-label" %>
+ <%= f.label :password, t("settings.password.old"), class: "form-label" %>
<%= f.password_field :password, class: "form-control #{form_is_invalid?(@user, :password)}" %>
- <%= f.label t("settings.password.new"), class: "form-label" %> + <%= f.label :new_password, t("settings.password.new"), class: "form-label" %> <%= f.password_field :new_password, class: "form-control #{form_is_invalid?(@user, :password)}" %> - <%= f.label t("settings.password.confirmation"), class: "form-label" %> + <%= f.label :password_confirmation, t("settings.password.confirmation"), class: "form-label" %> <%= f.password_field :password_confirmation, class: "form-control #{form_is_invalid?(@user, :password_confirmation)}" %> |