mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Remove show bots from client settings
This commit is contained in:
		
							parent
							
								
									3defc831c3
								
							
						
					
					
						commit
						1b278f5630
					
				
					 1 changed files with 0 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -231,7 +231,6 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
				<MkSwitch v-model="enableInfiniteScroll">{{ i18n.ts.enableInfiniteScroll }}</MkSwitch>
 | 
			
		||||
				<MkSwitch v-model="keepScreenOn">{{ i18n.ts.keepScreenOn }}</MkSwitch>
 | 
			
		||||
				<MkSwitch v-model="clickToOpen">{{ i18n.ts.clickToOpen }}</MkSwitch>
 | 
			
		||||
				<MkSwitch v-model="showBots">{{ i18n.ts.showBots }}</MkSwitch>
 | 
			
		||||
				<MkSwitch v-model="disableStreamingTimeline">{{ i18n.ts.disableStreamingTimeline }}</MkSwitch>
 | 
			
		||||
				<MkSwitch v-model="enableHorizontalSwipe">{{ i18n.ts.enableHorizontalSwipe }}</MkSwitch>
 | 
			
		||||
				<MkSwitch v-model="alwaysConfirmFollow">{{ i18n.ts.alwaysConfirmFollow }}</MkSwitch>
 | 
			
		||||
| 
						 | 
				
			
			@ -377,14 +376,6 @@ const limitWidthOfReaction = computed(defaultStore.makeGetterSetter('limitWidthO
 | 
			
		|||
const collapseRenotes = computed(defaultStore.makeGetterSetter('collapseRenotes'));
 | 
			
		||||
const collapseNotesRepliedTo = computed(defaultStore.makeGetterSetter('collapseNotesRepliedTo'));
 | 
			
		||||
const clickToOpen = computed(defaultStore.makeGetterSetter('clickToOpen'));
 | 
			
		||||
// 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…
	
	Add table
		
		Reference in a new issue