diff --git a/lib/music_library_web/live/record_set_live/index.html.heex b/lib/music_library_web/live/record_set_live/index.html.heex index 8066bb27..034a9a10 100644 --- a/lib/music_library_web/live/record_set_live/index.html.heex +++ b/lib/music_library_web/live/record_set_live/index.html.heex @@ -1,26 +1,18 @@
-
-
-

- {gettext("Record Sets")} -

-
-
- <.button - variant="solid" - size="sm" - patch={~p"/record-sets/new"} - > - <.icon name="hero-plus" class="icon" aria-hidden="true" data-slot="icon" /> - {gettext("New Set")} - -
+
+ <.search_form query={@list_params.query} /> + <.button + variant="solid" + size="sm" + patch={~p"/record-sets/new"} + > + <.icon name="hero-plus" class="icon" aria-hidden="true" data-slot="icon" /> + {gettext("New Set")} +
- <.search_form query={@list_params.query} /> -
<.button_group> <.button diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 33d29aaa..9f1414b2 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -1745,7 +1745,6 @@ msgid "No records found" msgstr "" #: lib/music_library_web/live/record_set_live/index.ex -#: lib/music_library_web/live/record_set_live/index.html.heex #, elixir-autogen, elixir-format msgid "Record Sets" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index 43b5c164..72f42f74 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -1745,7 +1745,6 @@ msgid "No records found" msgstr "" #: lib/music_library_web/live/record_set_live/index.ex -#: lib/music_library_web/live/record_set_live/index.html.heex #, elixir-autogen, elixir-format, fuzzy msgid "Record Sets" msgstr "" diff --git a/test/music_library_web/live/record_set_live/index_test.exs b/test/music_library_web/live/record_set_live/index_test.exs index d5e51a41..e15c4264 100644 --- a/test/music_library_web/live/record_set_live/index_test.exs +++ b/test/music_library_web/live/record_set_live/index_test.exs @@ -12,7 +12,6 @@ defmodule MusicLibraryWeb.RecordSetLive.IndexTest do conn |> visit(~p"/record-sets") - |> assert_has("h1", text: "Record Sets") |> assert_has("h2", text: "My Favorites") end