fix: throwing errors

This commit is contained in:
DarkPhoenix2704
2025-01-10 16:11:01 +00:00
parent 34d7858963
commit f7d93e6248
4 changed files with 23 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ const tablesRef = computedAsync<TableType[]>(async () => {
tables = activeTables.value
}
if (props.filterTable) {
return tables.filter(props.filterTable)
tables = tables.filter(props.filterTable)
}
return tables
})