diff --git a/src/more-infos/more-info-configurator.js b/src/more-infos/more-info-configurator.js index 659ba918fa..07f3d27b64 100644 --- a/src/more-infos/more-info-configurator.js +++ b/src/more-infos/more-info-configurator.js @@ -43,8 +43,9 @@ export default new Polymer({ type: String, computed: 'computeSubmitCaption(stateObj)', }, - fieldInput : { - type: Object, value: {} + + fieldInput: { + type: Object, value: {}, }, }, @@ -57,7 +58,7 @@ export default new Polymer({ }, fieldChanged(ev) { - const el = ev.target + const el = ev.target; this.fieldInput[el.id] = el.value; }, @@ -66,7 +67,7 @@ export default new Polymer({ const data = { configure_id: this.stateObj.attributes.configure_id, - fields: this.fieldInput + fields: this.fieldInput; }; serviceActions.callService('configurator', 'configure', data).then(