mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-21 21:45:11 +00:00
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/522 Closes #528 Approved-by: Marie <marie@kaifa.ch> Approved-by: fEmber <acomputerdog@gmail.com>
This commit is contained in:
commit
0a9697b405
1 changed files with 9 additions and 1 deletions
|
@ -293,6 +293,7 @@ import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|||
import { miLocalStorage } from '@/local-storage.js';
|
||||
import { globalEvents } from '@/events.js';
|
||||
import { claimAchievement } from '@/scripts/achievements.js';
|
||||
import { deepMerge } from '@/scripts/merge.js';
|
||||
|
||||
const lang = ref(miLocalStorage.getItem('lang'));
|
||||
const fontSize = ref(miLocalStorage.getItem('fontSize'));
|
||||
|
@ -319,7 +320,14 @@ const reactionsDisplaySize = computed(defaultStore.makeGetterSetter('reactionsDi
|
|||
const limitWidthOfReaction = computed(defaultStore.makeGetterSetter('limitWidthOfReaction'));
|
||||
const collapseRenotes = computed(defaultStore.makeGetterSetter('collapseRenotes'));
|
||||
const clickToOpen = computed(defaultStore.makeGetterSetter('clickToOpen'));
|
||||
const showBots = computed(defaultStore.makeGetterSetter('tlWithBots'));
|
||||
// copied from src/pages/timeline.vue
|
||||
const showBots = computed<boolean>({
|
||||
get: () => defaultStore.reactiveState.tl.value.filter.withBots,
|
||||
set: (newValue) => {
|
||||
const out = deepMerge({ filter: { withBots: newValue } }, defaultStore.state.tl);
|
||||
defaultStore.set('tl', out);
|
||||
},
|
||||
});
|
||||
const collapseFiles = computed(defaultStore.makeGetterSetter('collapseFiles'));
|
||||
const autoloadConversation = computed(defaultStore.makeGetterSetter('autoloadConversation'));
|
||||
const reduceAnimation = computed(defaultStore.makeGetterSetter('animation', v => !v, v => !v));
|
||||
|
|
Loading…
Reference in a new issue