diff --git a/lib/music_library_web/live/artist_live/show.html.heex b/lib/music_library_web/live/artist_live/show.html.heex
index 43206b9d..2b862d65 100644
--- a/lib/music_library_web/live/artist_live/show.html.heex
+++ b/lib/music_library_web/live/artist_live/show.html.heex
@@ -8,70 +8,74 @@
-
- <.dropdown id={"actions-#{@artist.musicbrainz_id}"} placement="bottom-end">
- <:toggle>
- <.button variant="ghost">
- {gettext("Actions")}
- <.icon
- name="hero-ellipsis-vertical"
- class="h-5 w-5 text-zinc-500 dark:text-zinc-400 cursor-pointer"
- aria-hidden="true"
- data-slot="icon"
- />
-
-
- <.focus_wrap id={"actions-#{@artist.musicbrainz_id}-focus-wrap"}>
- <.dropdown_link
- id={"actions-#{@artist.musicbrainz_id}-edit"}
- patch={~p"/artists/#{@artist.musicbrainz_id}/edit"}
- >
- <.icon
- name="hero-pencil-square"
- class="h-4 w-4 mr-1 phx-click-loading:animate-bounce"
- aria-hidden="true"
- data-slot="icon"
- />
- {gettext("Edit")}
-
- <.dropdown_link
- id={"actions-#{@artist.musicbrainz_id}-refresh-image"}
- phx-click={JS.push("refresh_artist_image", value: %{id: @artist.musicbrainz_id})}
- >
- <.icon
- name="hero-photo"
- class="h-4 w-4 mr-1 phx-click-loading:animate-bounce"
- aria-hidden="true"
- data-slot="icon"
- />
- {gettext("Refresh image")}
-
+ <.button_group>
+ <.button
+ variant="soft"
+ phx-click={MusicLibraryWeb.Components.Notes.open("artist-notes-sheet")}
+ >
+ {gettext("Open Notes")}
+ <.icon
+ name="hero-pencil"
+ class="h-5 w-5"
+ aria-hidden="true"
+ data-slot="icon"
+ />
+
+ <.dropdown id={"actions-#{@artist.musicbrainz_id}"} placement="bottom-end">
+ <:toggle>
+ <.button variant="soft">
+ {gettext("Actions")}
+ <.icon
+ name="hero-ellipsis-vertical"
+ class="h-5 w-5 text-zinc-500 dark:text-zinc-400 cursor-pointer"
+ aria-hidden="true"
+ data-slot="icon"
+ />
+
+
+ <.focus_wrap id={"actions-#{@artist.musicbrainz_id}-focus-wrap"}>
+ <.dropdown_link
+ id={"actions-#{@artist.musicbrainz_id}-edit"}
+ patch={~p"/artists/#{@artist.musicbrainz_id}/edit"}
+ >
+ <.icon
+ name="hero-pencil-square"
+ class="h-4 w-4 mr-1 phx-click-loading:animate-bounce"
+ aria-hidden="true"
+ data-slot="icon"
+ />
+ {gettext("Edit")}
+
+ <.dropdown_link
+ id={"actions-#{@artist.musicbrainz_id}-refresh-image"}
+ phx-click={
+ JS.push("refresh_artist_image", value: %{id: @artist.musicbrainz_id})
+ }
+ >
+ <.icon
+ name="hero-photo"
+ class="h-4 w-4 mr-1 phx-click-loading:animate-bounce"
+ aria-hidden="true"
+ data-slot="icon"
+ />
+ {gettext("Refresh image")}
+
- <.dropdown_link
- id={"actions-#{@artist.musicbrainz_id}-refresh-artist-info"}
- phx-click={JS.push("refresh_artist_info", value: %{id: @artist.musicbrainz_id})}
- >
- <.icon
- name="hero-arrow-path"
- class="h-4 w-4 mr-1 phx-click-loading:animate-spin"
- aria-hidden="true"
- data-slot="icon"
- />
- {gettext("Refresh info")}
-
-
-
+ <.dropdown_link
+ id={"actions-#{@artist.musicbrainz_id}-refresh-artist-info"}
+ phx-click={JS.push("refresh_artist_info", value: %{id: @artist.musicbrainz_id})}
+ >
+ <.icon
+ name="hero-arrow-path"
+ class="h-4 w-4 mr-1 phx-click-loading:animate-spin"
+ aria-hidden="true"
+ data-slot="icon"
+ />
+ {gettext("Refresh info")}
+
+
+
+