diff --git a/addon/components/value-type-display.coffee b/addon/components/value-type-display.coffee index dfcc44d..653acce 100644 --- a/addon/components/value-type-display.coffee +++ b/addon/components/value-type-display.coffee @@ -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 diff --git a/addon/components/value-type-display.js b/addon/components/value-type-display.js index 5422661..f60cdec 100644 --- a/addon/components/value-type-display.js +++ b/addon/components/value-type-display.js @@ -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'; }