diff --git a/lib/components/FilePicker/FileList.vue b/lib/components/FilePicker/FileList.vue index 83ce5024..c638ad8f 100644 --- a/lib/components/FilePicker/FileList.vue +++ b/lib/components/FilePicker/FileList.vue @@ -201,7 +201,7 @@ const fileContainer = ref() } } // container height - 50px table header / row height of 50px - skeletonNumber.value = Math.floor((height - 50) / 50) + skeletonNumber.value = Math.max(1, Math.floor((height - 50) / 50)) }) onMounted(() => { window.addEventListener('resize', resize)