fixed up temporary changes
This commit is contained in:
parent
80e09efd71
commit
1b310d7174
7 changed files with 13 additions and 9 deletions
|
|
@ -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']),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue