fixed: Cannot expand tables and views returned from search #1000

This commit is contained in:
SPRINX0\prochazka
2025-01-24 16:12:55 +01:00
parent e84af5af96
commit 6c9913abaa

View File

@@ -8,6 +8,7 @@
export let filter; export let filter;
export let isExpandedBySearch; export let isExpandedBySearch;
export let passProps; export let passProps;
export let isMainMatched;
</script> </script>
<AppObjectList <AppObjectList
@@ -17,7 +18,7 @@
foreignKey: findForeignKeyForColumn(data, col), foreignKey: findForeignKeyForColumn(data, col),
}))} }))}
module={columnAppObject} module={columnAppObject}
{filter} filter={isMainMatched ? '' : filter}
{isExpandedBySearch} {isExpandedBySearch}
{passProps} {passProps}
/> />