You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/export/+page.svelte
+27-18Lines changed: 27 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,12 @@
55
55
let exportWithFilters =$state(false);
56
56
let emailOnComplete =$state(false);
57
57
58
+
$effect(() => {
59
+
if ($tags.length===0) {
60
+
exportWithFilters=false;
61
+
}
62
+
});
63
+
58
64
let visibleColumns =$derived(showAllColumns?$table.columns:$table.columns.slice(0, 9));
59
65
let hasMoreColumns =$derived($table.columns.length>9);
60
66
let selectedColumnCount =$derived(Object.values(selectedColumns).filter(Boolean).length);
@@ -247,24 +253,27 @@
247
253
description="Column names will be added as the first row in the CSV"
248
254
bind:checked={includeHeader} />
249
255
250
-
<InputCheckbox
251
-
id="exportWithFilters"
252
-
label="Export with filters"
253
-
description="Export rows that match the current table filters"
0 commit comments