summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSukanya Pandey <sukapan1@in.ibm.com>2020-07-20 20:53:29 +0300
committerDerick Montague <derick.montague@ibm.com>2020-07-23 02:07:08 +0300
commitb2ca0c0441845f0e06c3acc94903c03cd1ec6dc3 (patch)
tree861ece0ff4390692b704cd2be8d439b1a728f409
parent129d79bb389966dca61533246315da1f2bc4931e (diff)
downloadwebui-vue-b2ca0c0441845f0e06c3acc94903c03cd1ec6dc3.tar.xz
Add the updated icons for critical and export
-the critical icon in the header and tables. -the export icon in the event log page. Signed-off-by: Sukanya Pandey <sukapan1@in.ibm.com> Change-Id: I5b3beedb8339ba6e6bbd34b43ea7698fc44f9e42
-rw-r--r--src/components/Global/StatusIcon.vue5
-rw-r--r--src/views/Health/EventLogs/EventLogs.vue2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Global/StatusIcon.vue b/src/components/Global/StatusIcon.vue
index 655d57b0..56088050 100644
--- a/src/components/Global/StatusIcon.vue
+++ b/src/components/Global/StatusIcon.vue
@@ -11,13 +11,14 @@
import IconCheckmark from '@carbon/icons-vue/es/checkmark--filled/20';
import IconWarning from '@carbon/icons-vue/es/warning--filled/20';
import IconError from '@carbon/icons-vue/es/error--filled/20';
+import IconMisuse from '@carbon/icons-vue/es/misuse/20';
export default {
name: 'StatusIcon',
components: {
iconSuccess: IconCheckmark,
- iconDanger: IconError,
- iconSecondary: IconError, //TODO: swap with right asset when available
+ iconDanger: IconMisuse,
+ iconSecondary: IconError,
iconWarning: IconWarning
},
props: {
diff --git a/src/views/Health/EventLogs/EventLogs.vue b/src/views/Health/EventLogs/EventLogs.vue
index 88b32b3e..bf340167 100644
--- a/src/views/Health/EventLogs/EventLogs.vue
+++ b/src/views/Health/EventLogs/EventLogs.vue
@@ -136,7 +136,7 @@
<script>
import IconTrashcan from '@carbon/icons-vue/es/trash-can/20';
-import IconExport from '@carbon/icons-vue/es/export/20';
+import IconExport from '@carbon/icons-vue/es/document--export/20';
import { omit } from 'lodash';
import PageTitle from '@/components/Global/PageTitle';