update deps
This commit is contained in:
		| @@ -10,7 +10,7 @@ | ||||
|         phx-click="lv:clear-flash" | ||||
|         phx-value-key="info" | ||||
|       > | ||||
|         <%= live_flash(@flash, :info) %> | ||||
|         <%= Phoenix.Flash.get(@flash, :info) %> | ||||
|       </p> | ||||
|  | ||||
|       <p | ||||
| @@ -20,7 +20,7 @@ | ||||
|         phx-click="lv:clear-flash" | ||||
|         phx-value-key="error" | ||||
|       > | ||||
|         <%= live_flash(@flash, :error) %> | ||||
|         <%= Phoenix.Flash.get(@flash, :error) %> | ||||
|       </p> | ||||
|     </div> | ||||
|   </header> | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
|     action={~p"/users/register"} | ||||
|     class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center" | ||||
|   > | ||||
|     <p :if={@changeset.action && not @changeset.valid?()} class="alert alert-danger col-span-3"> | ||||
|     <p :if={@changeset.action && not @changeset.valid?} class="alert alert-danger col-span-3"> | ||||
|       <%= dgettext("errors", "oops, something went wrong! please check the errors below.") %> | ||||
|     </p> | ||||
|  | ||||
|   | ||||
| @@ -9,7 +9,7 @@ | ||||
|     action={~p"/users/reset_password/#{@token}"} | ||||
|     class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center" | ||||
|   > | ||||
|     <p :if={@changeset.action && not @changeset.valid?()} class="alert alert-danger col-span-3"> | ||||
|     <p :if={@changeset.action && not @changeset.valid?} class="alert alert-danger col-span-3"> | ||||
|       <%= dgettext("errors", "oops, something went wrong! please check the errors below.") %> | ||||
|     </p> | ||||
|  | ||||
|   | ||||
| @@ -16,7 +16,7 @@ | ||||
|     </h3> | ||||
|  | ||||
|     <div | ||||
|       :if={@email_changeset.action && not @email_changeset.valid?()} | ||||
|       :if={@email_changeset.action && not @email_changeset.valid?} | ||||
|       class="alert alert-danger col-span-3" | ||||
|     > | ||||
|       <%= dgettext("errors", "oops, something went wrong! please check the errors below") %> | ||||
| @@ -58,7 +58,7 @@ | ||||
|     </h3> | ||||
|  | ||||
|     <p | ||||
|       :if={@password_changeset.action && not @password_changeset.valid?()} | ||||
|       :if={@password_changeset.action && not @password_changeset.valid?} | ||||
|       class="alert alert-danger col-span-3" | ||||
|     > | ||||
|       <%= dgettext("errors", "oops, something went wrong! please check the errors below.") %> | ||||
| @@ -112,7 +112,7 @@ | ||||
|     ) %> | ||||
|  | ||||
|     <div | ||||
|       :if={@locale_changeset.action && not @locale_changeset.valid?()} | ||||
|       :if={@locale_changeset.action && not @locale_changeset.valid?} | ||||
|       class="alert alert-danger col-span-3" | ||||
|     > | ||||
|       <%= dgettext("errors", "oops, something went wrong! please check the errors below") %> | ||||
|   | ||||
| @@ -13,7 +13,7 @@ | ||||
|     phx-hook="CtrlEnter" | ||||
|   > | ||||
|     <div | ||||
|       :if={@changeset.action && not @changeset.valid?()} | ||||
|       :if={@changeset.action && not @changeset.valid?} | ||||
|       class="invalid-feedback col-span-3 text-center" | ||||
|     > | ||||
|       <%= changeset_errors(@changeset) %> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user