commit | 09e45cd4f5e233d4ec75c086dd7ab912a2f79a41 | [log] [tgz] |
---|---|---|
author | Derick Montague <derick.montague@ibm.com> | Thu Jan 23 15:45:57 2020 -0600 |
committer | Derick Montague <derick.montague@ibm.com> | Thu Jan 30 17:06:25 2020 -0600 |
tree | 825a8c58830b45d5d6dc7d879f16efee575f5ce9 | |
parent | 4b0fc1dbb3f60a485d3ba7ec27d7654a8ea0d382 [diff] [blame] |
Change eslint rules to use vue recommended Resubmitting after reverted–original commit here https://gerrit.openbmc-project.xyz/c/openbmc/webui-vue/+/28763/7 - Ran npm run lint - Resolved eslint issues Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: I2b8b9244acddd483d0a72f9a5d156a79de9869a0
diff --git a/src/components/Global/StatusIcon.vue b/src/components/Global/StatusIcon.vue index 63155c9..a2c7f04 100644 --- a/src/components/Global/StatusIcon.vue +++ b/src/components/Global/StatusIcon.vue
@@ -13,11 +13,16 @@ export default { name: 'StatusIcon', - props: ['status'], components: { iconSuccess: IconCheckmark, iconDanger: IconWarning, iconSecondary: IconError + }, + props: { + status: { + type: String, + default: '' + } } }; </script>