Skip to content
Snippets Groups Projects
Commit 5cf76e39 authored by xaralis's avatar xaralis
Browse files

Fix MS Edge support

parent e0b6ba65
Branches
Tags
No related merge requests found
......@@ -32,7 +32,7 @@ export default {
this.$data.views[viewId] = show;
},
setViews(updates) {
this.$data.views = {...this.data.views, updates};
this.$data.views = Object.assign({}, this.data.views, updates);
},
toggleView(viewId) {
Object.keys(this.$data.views).forEach(key => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment