diff --git a/site/src/lib/app.ts b/site/src/lib/app.ts index 4194560..ea0e048 100644 --- a/site/src/lib/app.ts +++ b/site/src/lib/app.ts @@ -71,7 +71,7 @@ const formatTimeForTitle = (milliseconds: number): string => { // Get display name for Tab (tab title) using $match export const getDisplayName = (tab: Tab): string => { return $match(tab.app, { - Bible: ({ bibleState }) => `${getBibleBookDisplayName(bibleState.currentBook)} ${bibleState.currentChapter}`, + Bible: ({ bibleState }) => `${getBibleBookDisplayName(bibleState.currentBook)} ${bibleState.currentChapter} (${bibleState.translation.metadata.shortName})`, About: () => "About", ChooseApp: () => "Choose App", Stopwatch: ({ stopwatchState }) => { diff --git a/site/src/lib/components/AppContainer.svelte b/site/src/lib/components/AppContainer.svelte index 587f636..5001ac8 100644 --- a/site/src/lib/components/AppContainer.svelte +++ b/site/src/lib/components/AppContainer.svelte @@ -1,12 +1,13 @@