Loading client/src/components/FilesDialog/FilesDialog.vue +1 −0 Original line number Diff line number Diff line Loading @@ -409,6 +409,7 @@ onMounted(() => { :is-busy="isBusy" :items="items" :items-provider="itemsProvider" :provider-url="currentDirectory?.url" :total-items="totalItems" :modal-show="modalShow" :modal-static="modalStatic" Loading client/src/components/SelectionDialog/SelectionDialog.vue +12 −0 Original line number Diff line number Diff line Loading @@ -27,6 +27,7 @@ interface Props { isEncoded?: boolean; items?: SelectionItem[]; itemsProvider?: ItemsProvider; providerUrl?: string; totalItems?: number; leafIcon?: string; modalShow?: boolean; Loading @@ -48,6 +49,7 @@ const props = withDefaults(defineProps<Props>(), { isEncoded: false, items: () => [], itemsProvider: undefined, providerUrl: undefined, totalItems: 0, leafIcon: "fa fa-file-o", modalShow: true, Loading Loading @@ -127,6 +129,16 @@ watch( filtered(props.items); } ); watch( () => props.providerUrl, () => { // We need to reset the current page when drilling down sub-folders if (props.itemsProvider !== undefined) { currentPage.value = 1; } } ); </script> <template> Loading Loading
client/src/components/FilesDialog/FilesDialog.vue +1 −0 Original line number Diff line number Diff line Loading @@ -409,6 +409,7 @@ onMounted(() => { :is-busy="isBusy" :items="items" :items-provider="itemsProvider" :provider-url="currentDirectory?.url" :total-items="totalItems" :modal-show="modalShow" :modal-static="modalStatic" Loading
client/src/components/SelectionDialog/SelectionDialog.vue +12 −0 Original line number Diff line number Diff line Loading @@ -27,6 +27,7 @@ interface Props { isEncoded?: boolean; items?: SelectionItem[]; itemsProvider?: ItemsProvider; providerUrl?: string; totalItems?: number; leafIcon?: string; modalShow?: boolean; Loading @@ -48,6 +49,7 @@ const props = withDefaults(defineProps<Props>(), { isEncoded: false, items: () => [], itemsProvider: undefined, providerUrl: undefined, totalItems: 0, leafIcon: "fa fa-file-o", modalShow: true, Loading Loading @@ -127,6 +129,16 @@ watch( filtered(props.items); } ); watch( () => props.providerUrl, () => { // We need to reset the current page when drilling down sub-folders if (props.itemsProvider !== undefined) { currentPage.value = 1; } } ); </script> <template> Loading