Skip to content
Snippets Groups Projects
Commit 52f3781f authored by Joe Paul's avatar Joe Paul
Browse files

fix: Filter technical/cruft table types

parent e17348b8
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,10 @@ const listTablesForDatabase = async (...args) =>
* whether they're hidden. make sure table lists only use non hidden tables
* Ideally this should live in the API?
*/
t => t.visibility_type !== "hidden",
t =>
t.visibility_type !== "hidden" &&
t.visibility_type !== "technical" &&
t.visibility_type !== "cruft",
);
const listTablesForSchema = GET("/api/database/:dbId/schema/:schemaName");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment