Fix new icon designations for new semantic style

This commit is contained in:
2018-07-10 11:09:53 -05:00
parent 97586da9e1
commit 5fe0f31b6e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export default Ember.Component.extend
when 'string' then 'terminal'
when 'text' then 'sticky note outline'
when 'number' then 'hashtag'
when 'timestamp' then 'wait'
when 'timestamp' then 'clock outline'
else 'red warning circle'
# &.date
# @extend .fa-calendar
+1 -1
View File
@@ -24,7 +24,7 @@ export default Ember.Component.extend({
case 'number':
return 'hashtag';
case 'timestamp':
return 'wait';
return 'clock outline';
default:
return 'red warning circle';
}