From acdbea9b9acedef2658fe9ef1ba79bcc6c69e6ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Pereira?= Date: Thu, 14 Jul 2022 21:20:19 -0300 Subject: [PATCH] Fix #8 --- src/modules/otus/components/TaxaInfo.vue | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/modules/otus/components/TaxaInfo.vue b/src/modules/otus/components/TaxaInfo.vue index c961eb3..ace3efd 100644 --- a/src/modules/otus/components/TaxaInfo.vue +++ b/src/modules/otus/components/TaxaInfo.vue @@ -5,11 +5,6 @@

-

@@ -40,16 +35,4 @@ const taxonNameString = computed(() => ? props.taxon.cached_html + ' ' + (props.taxon.cached_author_year || '') : props.taxon.original_combination ) -const status = computed(() => - props.taxon.cached_is_valid - ? '✓' - : '✕' -) - -const statusStyle = computed(() => - props.taxon.cached_is_valid - ? 'text-green-600' - : 'text-red-600' -) -