lint
This commit is contained in:
parent
eb1807351c
commit
c05381e6aa
26 changed files with 81 additions and 54 deletions
|
|
@ -175,14 +175,16 @@ const setSettings = async ({ apiConfig, staticConfig, store }) => {
|
||||||
if (source === 'name') return
|
if (source === 'name') return
|
||||||
if (INSTANCE_IDENTIY_EXTERNAL.has(source)) return
|
if (INSTANCE_IDENTIY_EXTERNAL.has(source)) return
|
||||||
useInstanceStore().set({
|
useInstanceStore().set({
|
||||||
value: config[source] ?? INSTANCE_IDENTITY_DEFAULT_DEFINITIONS[source].default,
|
value:
|
||||||
|
config[source] ?? INSTANCE_IDENTITY_DEFAULT_DEFINITIONS[source].default,
|
||||||
path: `instanceIdentity.${source}`,
|
path: `instanceIdentity.${source}`,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Object.keys(INSTANCE_DEFAULT_CONFIG_DEFINITIONS).forEach((source) =>
|
Object.keys(INSTANCE_DEFAULT_CONFIG_DEFINITIONS).forEach((source) =>
|
||||||
useInstanceStore().set({
|
useInstanceStore().set({
|
||||||
value: config[source] ?? INSTANCE_DEFAULT_CONFIG_DEFINITIONS[source].default,
|
value:
|
||||||
|
config[source] ?? INSTANCE_DEFAULT_CONFIG_DEFINITIONS[source].default,
|
||||||
path: `prefsStorage.${source}`,
|
path: `prefsStorage.${source}`,
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,11 @@ const About = {
|
||||||
frontendVersionLink() {
|
frontendVersionLink() {
|
||||||
return pleromaFeCommitUrl + this.frontendVersion
|
return pleromaFeCommitUrl + this.frontendVersion
|
||||||
},
|
},
|
||||||
...mapState(useInstanceStore, ['backendVersion', 'backendRepository', 'frontendVersion']),
|
...mapState(useInstanceStore, [
|
||||||
|
'backendVersion',
|
||||||
|
'backendRepository',
|
||||||
|
'frontendVersion',
|
||||||
|
]),
|
||||||
showInstanceSpecificPanel() {
|
showInstanceSpecificPanel() {
|
||||||
return (
|
return (
|
||||||
useInstanceStore().instanceIdentity.showInstanceSpecificPanel &&
|
useInstanceStore().instanceIdentity.showInstanceSpecificPanel &&
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,9 @@
|
||||||
<features-panel v-if="showFeaturesPanel" />
|
<features-panel v-if="showFeaturesPanel" />
|
||||||
<div class="panel panel-default">
|
<div class="panel panel-default">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<div class="title">{{ $t('settings.version.title') }}</div>
|
<div class="title">
|
||||||
|
{{ $t('settings.version.title') }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<dl>
|
<dl>
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ const BasicUserCard = {
|
||||||
allowNonSquareEmoji() {
|
allowNonSquareEmoji() {
|
||||||
return useMergedConfigStore().mergedConfig.nonSquareEmoji
|
return useMergedConfigStore().mergedConfig.nonSquareEmoji
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default BasicUserCard
|
export default BasicUserCard
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@ import { defineAsyncComponent } from 'vue'
|
||||||
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
||||||
import UserAvatar from '../user_avatar/user_avatar.vue'
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
||||||
|
|
||||||
|
import { useMergedConfigStore } from 'src/stores/merged_config.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ChatTitle',
|
name: 'ChatTitle',
|
||||||
components: {
|
components: {
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,7 @@ export default {
|
||||||
label: {
|
label: {
|
||||||
required: false,
|
required: false,
|
||||||
type: String,
|
type: String,
|
||||||
|
default: '',
|
||||||
},
|
},
|
||||||
// use unstyled, uh, style
|
// use unstyled, uh, style
|
||||||
unstyled: {
|
unstyled: {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
import ConfirmModal from 'src/components/confirm_modal/confirm_modal.vue'
|
||||||
import Draft from 'src/components/draft/draft.vue'
|
import Draft from 'src/components/draft/draft.vue'
|
||||||
import List from 'src/components/list/list.vue'
|
import List from 'src/components/list/list.vue'
|
||||||
import ConfirmModal from 'src/components/confirm_modal/confirm_modal.vue'
|
|
||||||
|
|
||||||
const Drafts = {
|
const Drafts = {
|
||||||
components: {
|
components: {
|
||||||
|
|
@ -10,7 +10,7 @@ const Drafts = {
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
showingConfirmDialog: false
|
showingConfirmDialog: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
@ -23,12 +23,14 @@ const Drafts = {
|
||||||
this.showingConfirmDialog = true
|
this.showingConfirmDialog = true
|
||||||
},
|
},
|
||||||
doAbandonAll() {
|
doAbandonAll() {
|
||||||
this.$store.dispatch('abandonAllDrafts').then(() => this.hideConfirmDialog())
|
this.$store
|
||||||
|
.dispatch('abandonAllDrafts')
|
||||||
|
.then(() => this.hideConfirmDialog())
|
||||||
},
|
},
|
||||||
hideConfirmDialog() {
|
hideConfirmDialog() {
|
||||||
this.showingConfirmDialog = false
|
this.showingConfirmDialog = false
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Drafts
|
export default Drafts
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<div
|
<div
|
||||||
ref="root"
|
ref="root"
|
||||||
class="input emoji-input"
|
class="input emoji-input"
|
||||||
:class="{ '-with-picker': !hideEmojiButton, '-textarea': this.input?.tagName === 'TEXTAREA' }"
|
:class="{ '-with-picker': !hideEmojiButton, '-textarea': input?.tagName === 'TEXTAREA' }"
|
||||||
>
|
>
|
||||||
<slot
|
<slot
|
||||||
:id="'textbox-' + randomSeed"
|
:id="'textbox-' + randomSeed"
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ const Gallery = {
|
||||||
: attachments
|
: attachments
|
||||||
.reduce(
|
.reduce(
|
||||||
(acc, attachment, i) => {
|
(acc, attachment, i) => {
|
||||||
const peek = attachments[i+1]
|
const peek = attachments[i + 1]
|
||||||
const nextEnd = peek == null
|
const nextEnd = peek == null
|
||||||
const nextWide = !nextEnd && !displayTypes.has(peek?.type)
|
const nextWide = !nextEnd && !displayTypes.has(peek?.type)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
import { get } from 'lodash'
|
import { get } from 'lodash'
|
||||||
import { mapState } from 'pinia'
|
import { mapState } from 'pinia'
|
||||||
|
|
||||||
import { useInstanceStore } from 'src/stores/instance.js'
|
import { useInstanceStore } from 'src/stores/instance.js'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -21,16 +22,11 @@ const MRFTransparencyPanel = {
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(useInstanceStore, {
|
...mapState(useInstanceStore, {
|
||||||
federationPolicy: (state) => state.federationPolicy,
|
federationPolicy: (state) => state.federationPolicy,
|
||||||
mrfPolicies: (state) =>
|
mrfPolicies: (state) => get(state, 'federationPolicy.mrf_policies', []),
|
||||||
get(state, 'federationPolicy.mrf_policies', []),
|
|
||||||
quarantineInstances: (state) =>
|
quarantineInstances: (state) =>
|
||||||
toInstanceReasonObject(
|
toInstanceReasonObject(
|
||||||
get(state, 'federationPolicy.quarantined_instances', []),
|
get(state, 'federationPolicy.quarantined_instances', []),
|
||||||
get(
|
get(state, 'federationPolicy.quarantined_instances_info', []),
|
||||||
state,
|
|
||||||
'federationPolicy.quarantined_instances_info',
|
|
||||||
[],
|
|
||||||
),
|
|
||||||
'quarantined_instances',
|
'quarantined_instances',
|
||||||
),
|
),
|
||||||
acceptInstances: (state) =>
|
acceptInstances: (state) =>
|
||||||
|
|
|
||||||
|
|
@ -378,13 +378,10 @@ const PostStatusForm = {
|
||||||
this.newStatus.hasQuote = value
|
this.newStatus.hasQuote = value
|
||||||
this.newStatus.quote.thread = value
|
this.newStatus.quote.thread = value
|
||||||
this.newStatus.quote.id = value ? this.replyTo : ''
|
this.newStatus.quote.id = value ? this.replyTo : ''
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
defaultQuotable() {
|
defaultQuotable() {
|
||||||
if (
|
if (!this.quotingAvailable || !this.isReply) {
|
||||||
!this.quotingAvailable ||
|
|
||||||
!this.isReply
|
|
||||||
) {
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -264,10 +264,10 @@
|
||||||
/>
|
/>
|
||||||
<QuoteForm
|
<QuoteForm
|
||||||
v-if="quotingAvailable"
|
v-if="quotingAvailable"
|
||||||
|
:id="newStatus.quote.id"
|
||||||
ref="quoteForm"
|
ref="quoteForm"
|
||||||
:visible="quoteFormVisible"
|
:visible="quoteFormVisible"
|
||||||
:url="newStatus.quote.url"
|
:url="newStatus.quote.url"
|
||||||
:id="newStatus.quote.id"
|
|
||||||
@update:url="url => newStatus.quote.url = url"
|
@update:url="url => newStatus.quote.url = url"
|
||||||
@update:id="id => newStatus.quote.id = id"
|
@update:id="id => newStatus.quote.id = id"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -328,7 +328,13 @@ export default {
|
||||||
// slots updated -> rerender -> emit -> update up the tree -> rerender -> ...
|
// slots updated -> rerender -> emit -> update up the tree -> rerender -> ...
|
||||||
// at least until vue3?
|
// at least until vue3?
|
||||||
const result = (
|
const result = (
|
||||||
<span class={['RichContent', this.faint ? '-faint' : '', this.allowNonSquareEmoji ? '-allow-non-square-emoji' : '']}>
|
<span
|
||||||
|
class={[
|
||||||
|
'RichContent',
|
||||||
|
this.faint ? '-faint' : '',
|
||||||
|
this.allowNonSquareEmoji ? '-allow-non-square-emoji' : '',
|
||||||
|
]}
|
||||||
|
>
|
||||||
{this.collapse
|
{this.collapse
|
||||||
? pass2.map((x) => {
|
? pass2.map((x) => {
|
||||||
if (!Array.isArray(x)) return x.replace(/\n/g, ' ')
|
if (!Array.isArray(x)) return x.replace(/\n/g, ' ')
|
||||||
|
|
|
||||||
|
|
@ -9,13 +9,13 @@
|
||||||
class="setting-label"
|
class="setting-label"
|
||||||
:class="{ 'faint': shouldBeDisabled }"
|
:class="{ 'faint': shouldBeDisabled }"
|
||||||
>
|
>
|
||||||
<ModifiedIndicator
|
<ModifiedIndicator
|
||||||
:changed="isChanged"
|
:changed="isChanged"
|
||||||
:onclick="reset"
|
:onclick="reset"
|
||||||
/>
|
/>
|
||||||
<LocalSettingIndicator :is-local="isLocalSetting" />
|
<LocalSettingIndicator :is-local="isLocalSetting" />
|
||||||
{{ ' ' }}
|
{{ ' ' }}
|
||||||
<DraftButtons v-if="!hideDraftButtons" />
|
<DraftButtons v-if="!hideDraftButtons" />
|
||||||
<template v-if="backendDescriptionLabel">
|
<template v-if="backendDescriptionLabel">
|
||||||
{{ backendDescriptionLabel + ' ' }}
|
{{ backendDescriptionLabel + ' ' }}
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import { mapState } from 'pinia'
|
import { mapState } from 'pinia'
|
||||||
|
|
||||||
import BooleanSetting from '../helpers/boolean_setting.vue'
|
import BooleanSetting from '../helpers/boolean_setting.vue'
|
||||||
import SharedComputedObject from '../helpers/shared_computed_object.js'
|
import SharedComputedObject from '../helpers/shared_computed_object.js'
|
||||||
|
|
||||||
|
|
@ -17,7 +18,11 @@ const VersionTab = {
|
||||||
frontendVersionLink() {
|
frontendVersionLink() {
|
||||||
return pleromaFeCommitUrl + this.frontendVersion
|
return pleromaFeCommitUrl + this.frontendVersion
|
||||||
},
|
},
|
||||||
...mapState(useInstanceStore, ['backendVersion', 'backendRepository', 'frontendVersion']),
|
...mapState(useInstanceStore, [
|
||||||
|
'backendVersion',
|
||||||
|
'backendRepository',
|
||||||
|
'frontendVersion',
|
||||||
|
]),
|
||||||
...SharedComputedObject(),
|
...SharedComputedObject(),
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<span
|
<span
|
||||||
class="quick-action-buttons"
|
class="quick-action-buttons"
|
||||||
:class="{ '-pin': showPin }"
|
:class="{ '-pin': showPin }"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
v-for="button in quickButtons"
|
v-for="button in quickButtons"
|
||||||
:key="button.name"
|
:key="button.name"
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@ const KNOWN_TAGS = new Set([
|
||||||
'mrf_tag:force-unlisted',
|
'mrf_tag:force-unlisted',
|
||||||
'mrf_tag:sandbox',
|
'mrf_tag:sandbox',
|
||||||
'mrf_tag:disable-remote-subscription',
|
'mrf_tag:disable-remote-subscription',
|
||||||
'mrf_tag:disable-any-subscription'
|
'mrf_tag:disable-any-subscription',
|
||||||
])
|
])
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
@ -119,7 +119,7 @@ export default {
|
||||||
required: false,
|
required: false,
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
DialogModal,
|
DialogModal,
|
||||||
|
|
|
||||||
|
|
@ -218,6 +218,7 @@
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
v-for="tag in user.tags"
|
v-for="tag in user.tags"
|
||||||
|
:key="tag"
|
||||||
class="alert warning user-role"
|
class="alert warning user-role"
|
||||||
>
|
>
|
||||||
{{ isKnownTag ? $t('user_card.tags.' + tag) : tag }}
|
{{ isKnownTag ? $t('user_card.tags.' + tag) : tag }}
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@ import { defineAsyncComponent } from 'vue'
|
||||||
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
||||||
import UnicodeDomainIndicator from '../unicode_domain_indicator/unicode_domain_indicator.vue'
|
import UnicodeDomainIndicator from '../unicode_domain_indicator/unicode_domain_indicator.vue'
|
||||||
|
|
||||||
|
import { useMergedConfigStore } from 'src/stores/merged_config.js'
|
||||||
|
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
|
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
||||||
import { useMergedConfigStore } from 'src/stores/merged_config.js'
|
|
||||||
|
|
||||||
library.add(faCircleNotch)
|
library.add(faCircleNotch)
|
||||||
|
|
||||||
const UserListPopover = {
|
const UserListPopover = {
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,9 @@ import List from '../list/list.vue'
|
||||||
import Timeline from '../timeline/timeline.vue'
|
import Timeline from '../timeline/timeline.vue'
|
||||||
import UserCard from '../user_card/user_card.vue'
|
import UserCard from '../user_card/user_card.vue'
|
||||||
|
|
||||||
import { useMergedConfigStore } from 'src/stores/merged_config.js'
|
|
||||||
import { useInstanceStore } from 'src/stores/instance.js'
|
import { useInstanceStore } from 'src/stores/instance.js'
|
||||||
import { useInstanceCapabilitiesStore } from 'src/stores/instance_capabilities.js'
|
import { useInstanceCapabilitiesStore } from 'src/stores/instance_capabilities.js'
|
||||||
|
import { useMergedConfigStore } from 'src/stores/merged_config.js'
|
||||||
|
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
|
import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ const saveDraftToStorage = async (draft) => {
|
||||||
|
|
||||||
const deleteDraftFromStorage = async (ids) => {
|
const deleteDraftFromStorage = async (ids) => {
|
||||||
const currentData = await getStorageData()
|
const currentData = await getStorageData()
|
||||||
ids.forEach(id => {
|
ids.forEach((id) => {
|
||||||
delete currentData[id]
|
delete currentData[id]
|
||||||
})
|
})
|
||||||
await storage.setItem(storageKey, currentData)
|
await storage.setItem(storageKey, currentData)
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,10 @@ export const maybeShowNotification = (
|
||||||
|
|
||||||
if (notification.seen) return
|
if (notification.seen) return
|
||||||
if (!visibleTypes(notificationVisibility).includes(notification.type)) return
|
if (!visibleTypes(notificationVisibility).includes(notification.type)) return
|
||||||
if (notification.type === 'mention' && isMutedNotification(muteFilters, notification))
|
if (
|
||||||
|
notification.type === 'mention' &&
|
||||||
|
isMutedNotification(muteFilters, notification)
|
||||||
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
const notificationObject = prepareNotificationObject(
|
const notificationObject = prepareNotificationObject(
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,15 @@ export const muteFilterHits = (muteFilters, status) => {
|
||||||
return muteFilters
|
return muteFilters
|
||||||
.toSorted((a, b) => b.order - a.order)
|
.toSorted((a, b) => b.order - a.order)
|
||||||
.map((filter) => {
|
.map((filter) => {
|
||||||
const { hide, expires, name, value, type, enabled, caseSensitive = false } = filter
|
const {
|
||||||
|
hide,
|
||||||
|
expires,
|
||||||
|
name,
|
||||||
|
value,
|
||||||
|
type,
|
||||||
|
enabled,
|
||||||
|
caseSensitive = false,
|
||||||
|
} = filter
|
||||||
if (!enabled) return false
|
if (!enabled) return false
|
||||||
if (value === '') return false
|
if (value === '') return false
|
||||||
if (expires !== null && expires < Date.now()) return false
|
if (expires !== null && expires < Date.now()) return false
|
||||||
|
|
@ -18,9 +26,7 @@ export const muteFilterHits = (muteFilters, status) => {
|
||||||
case 'word': {
|
case 'word': {
|
||||||
let match = false
|
let match = false
|
||||||
if (caseSensitive) {
|
if (caseSensitive) {
|
||||||
match =
|
match = statusText.includes(value) || statusSummary.includes(value)
|
||||||
statusText.includes(value) ||
|
|
||||||
statusSummary.includes(value)
|
|
||||||
} else {
|
} else {
|
||||||
const lowercaseValue = value.toLowerCase()
|
const lowercaseValue = value.toLowerCase()
|
||||||
match =
|
match =
|
||||||
|
|
@ -56,7 +62,9 @@ export const muteFilterHits = (muteFilters, status) => {
|
||||||
match =
|
match =
|
||||||
poster.toLowerCase().includes(lowercaseValue) ||
|
poster.toLowerCase().includes(lowercaseValue) ||
|
||||||
replyToUser.toLowerCase().includes(lowercaseValue) ||
|
replyToUser.toLowerCase().includes(lowercaseValue) ||
|
||||||
mentions.some((mention) => mention.toLowerCase().includes(lowercaseValue))
|
mentions.some((mention) =>
|
||||||
|
mention.toLowerCase().includes(lowercaseValue),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
if (match) {
|
if (match) {
|
||||||
return { hide, name }
|
return { hide, name }
|
||||||
|
|
|
||||||
|
|
@ -499,10 +499,7 @@ export const init = ({
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
const lastVariantRule = variantRules[variantRules.length - 1]
|
const lastVariantRule = variantRules[variantRules.length - 1]
|
||||||
const lastVariantSelector = ruleToSelector(
|
const lastVariantSelector = ruleToSelector(lastVariantRule, true)
|
||||||
lastVariantRule,
|
|
||||||
true,
|
|
||||||
)
|
|
||||||
|
|
||||||
if (lastVariantRule && lastVariantSelector !== selector) {
|
if (lastVariantRule && lastVariantSelector !== selector) {
|
||||||
inheritRule = lastVariantRule
|
inheritRule = lastVariantRule
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,8 @@ import {
|
||||||
uniqWith,
|
uniqWith,
|
||||||
unset,
|
unset,
|
||||||
} from 'lodash'
|
} from 'lodash'
|
||||||
import { v4 as uuidv4 } from 'uuid'
|
|
||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
|
import { v4 as uuidv4 } from 'uuid'
|
||||||
import { toRaw } from 'vue'
|
import { toRaw } from 'vue'
|
||||||
|
|
||||||
import { CURRENT_UPDATE_COUNTER } from 'src/components/update_notification/update_notification.js'
|
import { CURRENT_UPDATE_COUNTER } from 'src/components/update_notification/update_notification.js'
|
||||||
|
|
@ -684,8 +684,6 @@ export const useSyncConfigStore = defineStore('sync_config', {
|
||||||
`Already migrated Values: ${[...migratedEntries].join() || '[none]'}`,
|
`Already migrated Values: ${[...migratedEntries].join() || '[none]'}`,
|
||||||
)
|
)
|
||||||
|
|
||||||
const { configMigration } = useSyncConfigStore().flagStorage
|
|
||||||
|
|
||||||
Object.entries(oldDefaultConfigSync).forEach(([key, value]) => {
|
Object.entries(oldDefaultConfigSync).forEach(([key, value]) => {
|
||||||
const oldValue = config[key]
|
const oldValue = config[key]
|
||||||
const defaultValue = value
|
const defaultValue = value
|
||||||
|
|
|
||||||
|
|
@ -292,7 +292,10 @@ export const useUserHighlightStore = defineStore('user_highlight', {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
storage.setItem('vuex-lz', { ...vuexState, config: { ...config, highlight } })
|
storage.setItem('vuex-lz', {
|
||||||
|
...vuexState,
|
||||||
|
config: { ...config, highlight },
|
||||||
|
})
|
||||||
|
|
||||||
if (recent === null) {
|
if (recent === null) {
|
||||||
console.debug(
|
console.debug(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue