diff --git a/docker-compose.yml b/docker-compose.yml index 8621603..4c169b5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,11 +10,7 @@ services: POSTGRES_PASSWORD: postgres POSTGRES_DB: mv_dev volumes: - - type: volume - source: postgres-data - target: /var/lib/postgresql/data - volume: - nocopy: true + - postgres-data:/var/lib/postgresql/data ports: - "5000:5432" networks: @@ -49,9 +45,7 @@ services: - rauthy-dev - local volumes: - - type: volume - source: rauthy-data - target: /app/data + - rauthy-data:/app/data volumes: postgres-data: diff --git a/lib/mv_web/live/custom_field_value_live/form.ex b/lib/mv_web/live/custom_field_value_live/form.ex index 6ff6432..4db2bed 100644 --- a/lib/mv_web/live/custom_field_value_live/form.ex +++ b/lib/mv_web/live/custom_field_value_live/form.ex @@ -52,7 +52,7 @@ defmodule MvWeb.CustomFieldValueLive.Form do options={custom_field_options(@custom_fields)} prompt={gettext("Choose a custom field")} /> - + <.input field={@form[:member_id]} @@ -61,7 +61,7 @@ defmodule MvWeb.CustomFieldValueLive.Form do options={member_options(@members)} prompt={gettext("Choose a member")} /> - + <%= if @selected_custom_field do %> <.union_value_input form={@form} custom_field={@selected_custom_field} /> diff --git a/lib/mv_web/live/user_live/form.ex b/lib/mv_web/live/user_live/form.ex index c6749d8..f0cc1ce 100644 --- a/lib/mv_web/live/user_live/form.ex +++ b/lib/mv_web/live/user_live/form.ex @@ -44,7 +44,7 @@ defmodule MvWeb.UserLive.Form do <.form class="max-w-xl" for={@form} id="user-form" phx-change="validate" phx-submit="save"> <.input field={@form[:email]} label={gettext("Email")} required type="email" /> - +