diff --git a/ui/app/components/ConditionForm.vue b/ui/app/components/ConditionForm.vue index 52173fab..871ca279 100644 --- a/ui/app/components/ConditionForm.vue +++ b/ui/app/components/ConditionForm.vue @@ -475,7 +475,9 @@ : 'i-lucide-circle-help' " title="Filter Status" - :description="logicStatusText" + :description=" + testData.data.status === null ? 'Not tested' : logicTest ? 'Matched' : 'Not matched' + " /> @@ -673,14 +675,6 @@ const logicTest = computed(() => { } }); -const logicStatusText = computed(() => { - if (testData.value.data.status === null) { - return 'Not tested'; - } - - return logicTest.value ? 'Matched' : 'Not matched'; -}); - const checkInfo = async (): Promise => { for (const key of ['name', 'filter'] as const) { if (!form[key]) { diff --git a/ui/app/components/DLInput.vue b/ui/app/components/DLInput.vue index 5d2af6e1..98057f84 100644 --- a/ui/app/components/DLInput.vue +++ b/ui/app/components/DLInput.vue @@ -5,7 +5,7 @@ >
- + {{ label }} @@ -52,7 +52,7 @@