From 78a7f5b190327411ffffb8c172e776080db298b3 Mon Sep 17 00:00:00 2001
From: Adam Caouette
Date: Fri, 11 Feb 2022 15:08:48 -0500
Subject: [PATCH] CSR-254: remove unneeded code
---
src/ux-components/list-card/list-card.vue | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/src/ux-components/list-card/list-card.vue b/src/ux-components/list-card/list-card.vue
index bd1fb6a70..ebc52b83f 100644
--- a/src/ux-components/list-card/list-card.vue
+++ b/src/ux-components/list-card/list-card.vue
@@ -31,7 +31,7 @@
class="small order-3"
:class="isMultiSelect ? 'm-0' : 'mt-2 mb-0'"
>
- {{buttonLabel}} - {{errors.length}}
+ {{buttonLabel}}
{{buttonLabelSubCopy}}
@@ -124,11 +124,6 @@ export default {
errors,
};
},
- watch: {
- errors() {
- console.log('HEADS UP; ERRORS CHANGED, errors.length: ', this.errors.length)
- },
- },
};