From 97586da9e12b9122532dc1a671a244f6743f3606 Mon Sep 17 00:00:00 2001 From: Benjamin ter Kuile Date: Tue, 10 Jul 2018 11:08:29 -0500 Subject: [PATCH] Fix new icon designations for new semantic style --- addon/components/value-type-display.coffee | 4 ++-- addon/components/value-type-display.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addon/components/value-type-display.coffee b/addon/components/value-type-display.coffee index b9ccf0f..dfcc44d 100644 --- a/addon/components/value-type-display.coffee +++ b/addon/components/value-type-display.coffee @@ -8,8 +8,8 @@ export default Ember.Component.extend typeClass: Ember.computed 'type', -> @get('type') || 'no-typ' iconClass: Ember.computed 'type', -> switch @get('type') - when 'boolean' then 'checkmark box' - when 'date' then 'calendar' + when 'boolean' then 'check square outline' + when 'date' then 'calendar alternate outline' when 'select' then 'list' when 'string' then 'terminal' when 'text' then 'sticky note outline' diff --git a/addon/components/value-type-display.js b/addon/components/value-type-display.js index e65ef4b..5422661 100644 --- a/addon/components/value-type-display.js +++ b/addon/components/value-type-display.js @@ -12,9 +12,9 @@ export default Ember.Component.extend({ iconClass: Ember.computed('type', function() { switch (this.get('type')) { case 'boolean': - return 'checkmark box'; + return 'check square outline'; case 'date': - return 'calendar'; + return 'calendar alternate outline'; case 'select': return 'list'; case 'string':