implement new muting
This commit is contained in:
parent
57aa8818a9
commit
8d640d0b79
5 changed files with 48 additions and 27 deletions
|
|
@ -1,3 +1,4 @@
|
|||
import { throttle } from 'lodash'
|
||||
import { mapState, mapActions } from 'pinia'
|
||||
import { useServerSideStorageStore } from 'src/stores/serverSideStorage'
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
|
|
@ -40,7 +41,8 @@ const FilteringTab = {
|
|||
)
|
||||
},
|
||||
methods: {
|
||||
...mapActions(useServerSideStorageStore, ['setPreference', 'unsetPreference', 'pushServerSideStorage']),
|
||||
...mapActions(useServerSideStorageStore, ['setPreference', 'unsetPreference']),
|
||||
pushServerSideStorage: throttle(() => useServerSideStorageStore().pushServerSideStorage(), 500),
|
||||
getDatetimeLocal (timestamp) {
|
||||
const date = new Date(timestamp)
|
||||
const datetime = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue