mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-05-07 05:42:40 +08:00
✨ Feature(custom): status of filter bar is persist now
This commit is contained in:
@@ -47,7 +47,7 @@
|
|||||||
<button class="action-button" @click="toggleHandleBar">
|
<button class="action-button" @click="toggleHandleBar">
|
||||||
<ChevronDownIcon v-if="!handleBarActive" :size="16" />
|
<ChevronDownIcon v-if="!handleBarActive" :size="16" />
|
||||||
<ChevronUpIcon v-else :size="16" />
|
<ChevronUpIcon v-else :size="16" />
|
||||||
{{ handleBarActive ? t('pages.gallery.hideFilters') : t('pages.gallery.showFilters') }}
|
{{ t('pages.gallery.hideFilters') }}
|
||||||
</button>
|
</button>
|
||||||
<button class="action-button" @click="refreshPage">
|
<button class="action-button" @click="refreshPage">
|
||||||
<RefreshCwIcon :size="16" />
|
<RefreshCwIcon :size="16" />
|
||||||
@@ -568,7 +568,7 @@ const searchText = ref<string>('')
|
|||||||
const searchTextURL = ref<string>('')
|
const searchTextURL = ref<string>('')
|
||||||
const debouncedSearchText = ref<string>('')
|
const debouncedSearchText = ref<string>('')
|
||||||
const debouncedSearchTextURL = ref<string>('')
|
const debouncedSearchTextURL = ref<string>('')
|
||||||
const handleBarActive = ref<boolean>(false)
|
const handleBarActive = useStorage<boolean>('galleryHandleBarActive', true)
|
||||||
const pasteStyle = ref<string>('')
|
const pasteStyle = ref<string>('')
|
||||||
const pasteStyleMap = {
|
const pasteStyleMap = {
|
||||||
Markdown: 'markdown',
|
Markdown: 'markdown',
|
||||||
|
|||||||
Reference in New Issue
Block a user