Change "Classic" to "Centered"

This commit is contained in:
Freeplay 2023-05-14 19:10:48 -04:00
parent fb21f501ef
commit eac5b327af
2 changed files with 9 additions and 9 deletions

View file

@ -919,7 +919,7 @@ manageAccounts: "Manage Accounts"
makeReactionsPublic: "Set reaction history to public"
makeReactionsPublicDescription: "This will make the list of all your past reactions\
\ publicly visible."
classic: "Classic"
classic: "Centered"
muteThread: "Mute thread"
unmuteThread: "Unmute thread"
ffVisibility: "Follows/Followers Visibility"

View file

@ -120,14 +120,6 @@ export const navbarItemDef = reactive({
unisonReload();
},
},
{
text: i18n.ts.deck,
active: ui === "deck",
action: () => {
localStorage.setItem("ui", "deck");
unisonReload();
},
},
{
text: i18n.ts.classic,
active: ui === "classic",
@ -136,6 +128,14 @@ export const navbarItemDef = reactive({
unisonReload();
},
},
{
text: i18n.ts.deck,
active: ui === "deck",
action: () => {
localStorage.setItem("ui", "deck");
unisonReload();
},
},
],
ev.currentTarget ?? ev.target,
);