mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 04:26:58 +00:00
put autoloadConversation
back
it got lost in the merge
This commit is contained in:
parent
dbb04c6c0a
commit
be76469d4f
1 changed files with 9 additions and 0 deletions
|
@ -341,6 +341,14 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</MkPreferenceContainer>
|
||||
</SearchMarker>
|
||||
|
||||
<SearchMarker :keywords="['load', 'conversation']">
|
||||
<MkPreferenceContainer k="autoloadConversation">
|
||||
<MkSwitch v-model="autoloadConversation">
|
||||
<template #label><SearchLabel>{{ i18n.ts.autoloadConversation }}</SearchLabel></template>
|
||||
</MkSwitch>
|
||||
</MkPreferenceContainer>
|
||||
</SearchMarker>
|
||||
|
||||
<SearchMarker :keywords="['number', 'replies']">
|
||||
<MkPreferenceContainer k="numberOfReplies">
|
||||
<MkRange v-model="numberOfReplies" :min="2" :max="20" :step="1" easing>
|
||||
|
@ -973,6 +981,7 @@ const visibilityOnBoost = prefer.model('visibilityOnBoost');
|
|||
const cornerRadius = ref(miLocalStorage.getItem('cornerRadius'));
|
||||
const oneko = prefer.model('oneko');
|
||||
const numberOfReplies = prefer.model('numberOfReplies');
|
||||
const autoloadConversation = prefer.model('autoloadConversation');
|
||||
|
||||
const useCustomSearchEngine = computed(() => !Object.keys(searchEngineMap).includes(searchEngine.value));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue