From 746a71ac102d01502e8d90c8530182401287f6ba Mon Sep 17 00:00:00 2001 From: Fine Date: Sat, 14 Jan 2023 16:12:30 +0800 Subject: [PATCH] feat: delete filters --- src/views/dashboard/List.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/dashboard/List.vue b/src/views/dashboard/List.vue index 20a3f751..4029bbc0 100644 --- a/src/views/dashboard/List.vue +++ b/src/views/dashboard/List.vue @@ -226,6 +226,7 @@ limitations under the License. --> standard?: unknown; label?: string; value?: string; + filters?: unknown; })[], ) { for (const child of children || []) { @@ -235,6 +236,7 @@ limitations under the License. --> delete child.id; delete child.label; delete child.value; + delete child.filters; if (isEmptyObject(child.graph)) { delete child.graph; }