1
0

fix: remove workarounds to properly overlay the top menu bar over everything else

This commit is contained in:
kolaente
2022-05-08 23:26:07 +02:00
parent 0007c30672
commit 4b0d491359
4 changed files with 61 additions and 60 deletions

View File

@ -51,7 +51,6 @@ export const store = createStore({
menuActive: true,
keyboardShortcutsActive: false,
quickActionsActive: false,
modalActive: false,
},
mutations: {
[LOADING](state, loading) {
@ -90,9 +89,6 @@ export const store = createStore({
[BLUR_HASH](state, blurHash) {
state.blurHash = blurHash
},
modalActive(state, active) {
state.modalActive = active
},
},
actions: {
async [CURRENT_LIST]({state, commit}, {list, forceUpdate = false}) {