From a20ff86591fddcf9e85416a426bdb978a1749990 Mon Sep 17 00:00:00 2001 From: martin <74269598+martabal@users.noreply.github.com> Date: Mon, 27 May 2024 21:02:08 +0200 Subject: [PATCH] Update web/src/lib/components/photos-page/asset-grid.svelte Co-authored-by: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com> --- web/src/lib/components/photos-page/asset-grid.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/components/photos-page/asset-grid.svelte b/web/src/lib/components/photos-page/asset-grid.svelte index 1545f19551..24c687756d 100644 --- a/web/src/lib/components/photos-page/asset-grid.svelte +++ b/web/src/lib/components/photos-page/asset-grid.svelte @@ -149,7 +149,7 @@ // you're not supposed to manage your assets on the trash page: there's no button to manage it, then there's no reason to have shortcuts to do it. if ($page.url.pathname !== AppRoute.TRASH) { shortcuts.push({ shortcut: { key: 'a', shift: true }, onShortcut: onArchive }); - // on some page, you can't favorite assets (like on `/parthner`) + // on some pages, you can't favorite assets (like on `/partner`) if (isAllFavorite !== null) { shortcuts.push({ shortcut: { key: 'f' }, onShortcut: onFavorite }); }