client: fix fetching value in photos.vue

This commit is contained in:
Norm 2022-09-03 00:20:26 -04:00
parent 8f775defaf
commit 89f26173c3
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE

View file

@ -60,7 +60,7 @@ const { widgetProps, configure } = useWidgetPropsManager(name,
const connection = stream.useChannel('main');
let images: DriveFile[] = $ref([]);
let fetching = $ref(false);
let fetching = $ref(true);
const onDriveFileCreated = (file: DriveFile): void => {
if (/^image\/.+$/.test(file.type)) {