Skip to content

Commit

Permalink
Remove adding of quotes around string values
Browse files Browse the repository at this point in the history
Fixes #952
  • Loading branch information
RobbieTheWagner committed Apr 17, 2019
1 parent 412dc4b commit 0f94177
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions app/components/mixin-property.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ export default Component.extend({
}

let value = this.get('model.value.inspect');
let type = this.get('valueType');
if (type === 'type-string') {
value = `"${value}"`;
}
if (!this.get('isDate')) {
this.set('txtValue', value);
} else {
Expand Down

0 comments on commit 0f94177

Please sign in to comment.