diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-08-30 21:08:36 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-08-30 21:08:36 -0500 |
| commit | 7872741fc19b3fbcfa0482d40490fbdfda189371 (patch) | |
| tree | 4c421a2329c070bcd9eb0da011400253d9e10764 /src/components/EditorLists.vue | |
| parent | e9e09554221e40e0891f2134525baaa90ff00076 (diff) | |
Fix linting errors
Diffstat (limited to 'src/components/EditorLists.vue')
| -rw-r--r-- | src/components/EditorLists.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/EditorLists.vue b/src/components/EditorLists.vue index 76f8cd1..dff34f4 100644 --- a/src/components/EditorLists.vue +++ b/src/components/EditorLists.vue @@ -44,11 +44,11 @@ export default defineComponent({ props: { peerTeachers: { type: Array as PropType<PeerTeacher[]>, - default: [], + default: () => [], }, labs: { type: Array as PropType<Lab[]>, - default: [], + default: () => [], }, }, computed: { |
