Change "Classic" to "Centered"

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

View File

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

View File

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