client: fix fetching value in photos.vue
All checks were successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
Norm 2022-09-03 00:20:26 -04:00
parent 8f775defaf
commit 89f26173c3
Signed by: 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)) {