diff options
| author | Johann150 <johann.galle@protonmail.com> | 2022-07-04 16:06:46 +0200 |
|---|---|---|
| committer | Johann150 <johann.galle@protonmail.com> | 2022-07-04 16:06:46 +0200 |
| commit | 366fae41ff4db267a03e8127a23773ddf820e16d (patch) | |
| tree | 18bdbadb183e4e29890cf0fd6e768eb3fdc629b6 /packages/client/src | |
| parent | fix lint no-fallthrough (diff) | |
| download | sharkey-366fae41ff4db267a03e8127a23773ddf820e16d.tar.gz sharkey-366fae41ff4db267a03e8127a23773ddf820e16d.tar.bz2 sharkey-366fae41ff4db267a03e8127a23773ddf820e16d.zip | |
fix lint vue/require-valid-default-prop
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/components/ui/window.vue | 4 |
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: () => [], }, }, |