From df6c8f0ba13c4efddcd0710bc9e553732453b287 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Mon, 21 Oct 2024 22:33:53 +0100 Subject: [PATCH] Fix wishlist page title --- lib/music_library_web/live/wishlist_live/index.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/music_library_web/live/wishlist_live/index.ex b/lib/music_library_web/live/wishlist_live/index.ex index 31c5093f..8c814d7d 100644 --- a/lib/music_library_web/live/wishlist_live/index.ex +++ b/lib/music_library_web/live/wishlist_live/index.ex @@ -69,7 +69,7 @@ defmodule MusicLibraryWeb.WishlistLive.Index do records = Wishlist.search_records(query, limit: record_list_params.page_size, offset: offset) socket - |> assign(:page_title, gettext("Collection")) + |> assign(:page_title, gettext("Wishlist")) |> assign(:record, nil) |> assign(:record_list_params, record_list_params) |> stream(:records, records, reset: true)