diff --git a/core/frameworks/pixel/components/radio_group.ex b/core/frameworks/pixel/components/radio_group.ex index 1b53d9f9e..56a4cad6a 100644 --- a/core/frameworks/pixel/components/radio_group.ex +++ b/core/frameworks/pixel/components/radio_group.ex @@ -34,7 +34,7 @@ defmodule Frameworks.Pixel.RadioGroup do end @impl true - def handle_event("change", _, socket) do + def handle_event("change", _payload, socket) do # ignore change, this happens always the first time rendering {:noreply, socket} end diff --git a/core/systems/storage/endpoint_form.ex b/core/systems/storage/endpoint_form.ex index 1189b9e63..bc47e9951 100644 --- a/core/systems/storage/endpoint_form.ex +++ b/core/systems/storage/endpoint_form.ex @@ -110,6 +110,7 @@ defmodule Systems.Storage.EndpointForm do special: special ) |> update_special_title() + |> compose_child(:type_selector) |> compose_child(:special_form) } end