From a0335227c52030dd915d728b51dd57c84d7dd1e4 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 19 Jul 2023 14:31:56 +0800 Subject: [PATCH] fix filterrulecard --- src/components/cards/FilterRuleCard.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/cards/FilterRuleCard.vue b/src/components/cards/FilterRuleCard.vue index 3c905733..c1771330 100644 --- a/src/components/cards/FilterRuleCard.vue +++ b/src/components/cards/FilterRuleCard.vue @@ -40,6 +40,8 @@ const selectFilterOptions = ref<{ [key: string]: string }[]>([ { title: "排除杜比", value: " !DOLBY ", color: "error" }, { title: "HDR", value: " HDR ", color: "success" }, { title: "排除HDR", value: " !HDR ", color: "error" }, + { title: "国语配音", value: " CNVOI ", color: "error" }, + { title: "排除国语配音", value: " !CNVOI ", color: "error" }, { title: "免费", value: " FREE ", color: "success" }, ]);