From 0f94177c34741edb4e6b0ef638b031f8a8c16d6e Mon Sep 17 00:00:00 2001 From: Robert Wagner Date: Tue, 2 Apr 2019 19:14:08 -0400 Subject: [PATCH] Remove adding of quotes around string values Fixes #952 --- app/components/mixin-property.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/components/mixin-property.js b/app/components/mixin-property.js index 204882cfa8..62e76ae8dd 100644 --- a/app/components/mixin-property.js +++ b/app/components/mixin-property.js @@ -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 {