Fix new icon designations for new semantic style

This commit is contained in:
2018-07-10 11:08:29 -05:00
parent 46302a8e37
commit 97586da9e1
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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'
+2 -2
View File
@@ -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':