summaryrefslogtreecommitdiff
path: root/packages/client/src/components
diff options
context:
space:
mode:
authorJohann150 <johann.galle@protonmail.com>2022-07-04 16:06:46 +0200
committerJohann150 <johann.galle@protonmail.com>2022-07-04 16:06:46 +0200
commit366fae41ff4db267a03e8127a23773ddf820e16d (patch)
tree18bdbadb183e4e29890cf0fd6e768eb3fdc629b6 /packages/client/src/components
parentfix lint no-fallthrough (diff)
downloadsharkey-366fae41ff4db267a03e8127a23773ddf820e16d.tar.gz
sharkey-366fae41ff4db267a03e8127a23773ddf820e16d.tar.bz2
sharkey-366fae41ff4db267a03e8127a23773ddf820e16d.zip
fix lint vue/require-valid-default-prop
Diffstat (limited to 'packages/client/src/components')
-rw-r--r--packages/client/src/components/ui/window.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/ui/window.vue b/packages/client/src/components/ui/window.vue
index 5475437706..6892b1924e 100644
--- a/packages/client/src/components/ui/window.vue
+++ b/packages/client/src/components/ui/window.vue
@@ -99,12 +99,12 @@ export default defineComponent({
buttonsLeft: {
type: Array,
required: false,
- default: [],
+ default: () => [],
},
buttonsRight: {
type: Array,
required: false,
- default: [],
+ default: () => [],
},
},