From 5e7ac49058e5dc37fd43ecf3c0d06f5dda14af5b Mon Sep 17 00:00:00 2001 From: Derick Montague Date: Thu, 23 Jan 2020 15:45:57 -0600 Subject: Change eslint rules to use vue recommended - Ran npm run lint - Resolved eslint issues Signed-off-by: Derick Montague Change-Id: Icd433ca55321d8bceb941e2d13ebade72bd4981f --- src/components/Global/StatusIcon.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/components/Global/StatusIcon.vue') diff --git a/src/components/Global/StatusIcon.vue b/src/components/Global/StatusIcon.vue index 63155c9a..a2c7f04f 100644 --- a/src/components/Global/StatusIcon.vue +++ b/src/components/Global/StatusIcon.vue @@ -13,11 +13,16 @@ import IconError from '@carbon/icons-vue/es/error--filled/20'; export default { name: 'StatusIcon', - props: ['status'], components: { iconSuccess: IconCheckmark, iconDanger: IconWarning, iconSecondary: IconError + }, + props: { + status: { + type: String, + default: '' + } } }; -- cgit v1.2.3