Fix propType errors for folders

This commit is contained in:
rijkvanzanten
2020-07-30 16:45:06 -04:00
parent fe918e6339
commit 7dffe138bf
5 changed files with 5 additions and 5 deletions

View File

@@ -65,7 +65,7 @@
<div class="grid" :class="{ 'single-row': isSingleRow }">
<template v-if="loading">
<card v-for="n in limit" :key="`loader-${n}`" item-key="loading" loading />
<card v-for="n in 6" :key="`loader-${n}`" item-key="loading" loading />
</template>
<card

View File

@@ -29,7 +29,7 @@ import api from '@/api';
export default defineComponent({
props: {
parent: {
type: Number,
type: String,
default: null,
},
},

View File

@@ -41,7 +41,7 @@ export default defineComponent({
required: true,
},
currentFolder: {
type: Number,
type: String,
default: null,
},
clickHandler: {

View File

@@ -36,7 +36,7 @@ export default defineComponent({
required: true,
},
currentFolder: {
type: Number,
type: String,
default: null,
},
clickHandler: {

View File

@@ -39,7 +39,7 @@ export default defineComponent({
},
props: {
currentFolder: {
type: Number,
type: String,
default: null,
},
},