diff --git a/core/core-frontend/src/components/de-app/AppExportForm.vue b/core/core-frontend/src/components/de-app/AppExportForm.vue index 3ca148e8f2..eec2f1314e 100644 --- a/core/core-frontend/src/components/de-app/AppExportForm.vue +++ b/core/core-frontend/src/components/de-app/AppExportForm.vue @@ -140,7 +140,13 @@ const close = () => { const gatherAppInfo = (viewIds, dsIds, componentDataCheck) => { componentDataCheck.forEach(item => { - if (item.component === 'UserView' && canvasViewInfo.value[item.id]) { + if (item.component === 'VQuery' && item.propValue?.length) { + item.propValue.forEach(filterItem => { + if (filterItem.dataset?.id) { + dsIds.push(filterItem.dataset.id) + } + }) + } else if (item.component === 'UserView' && canvasViewInfo.value[item.id]) { const viewDetails = canvasViewInfo.value[item.id] const { id, tableId } = viewDetails viewIds.push(id)