fixed up temporary changes

This commit is contained in:
Henry Jameson 2026-01-23 00:46:44 +02:00
commit 1b310d7174
7 changed files with 13 additions and 9 deletions

View file

@ -154,7 +154,7 @@ export default {
newPostButtonShown() {
if (this.isChats) return false
if (this.isListEdit) return false
return (this.alwaysShowNewPostButton || this.layoutType === 'mobile')
return this.alwaysShowNewPostButton || this.layoutType === 'mobile'
},
reverseLayout() {
const { thirdColumnMode, sidebarRight: reverseSetting } =
@ -172,8 +172,10 @@ export default {
},
...mapState(useSyncConfigStore, {
shoutboxPosition: (store) => store.mergedConfig.alwaysShowSubjectInput || false,
alwaysShowSubjectInput: (store) => store.mergedConfig.alwaysShowSubjectInput,
shoutboxPosition: (store) =>
store.mergedConfig.alwaysShowSubjectInput || false,
alwaysShowSubjectInput: (store) =>
store.mergedConfig.alwaysShowSubjectInput,
}),
...mapState(useInterfaceStore, ['layoutType']),