From f177c0eb9fe9fd73a7573164c10211805184b645 Mon Sep 17 00:00:00 2001
From: Paulus Schoutsen
Date: Tue, 20 Jun 2017 20:37:11 -0700
Subject: [PATCH] Fix configurator (#313)
---
src/more-infos/more-info-configurator.html | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/more-infos/more-info-configurator.html b/src/more-infos/more-info-configurator.html
index 4f5b71bbef..655135385a 100644
--- a/src/more-infos/more-info-configurator.html
+++ b/src/more-infos/more-info-configurator.html
@@ -1,11 +1,9 @@
-
-
-
+
@@ -66,10 +64,11 @@
-
-
-
-
+
@@ -122,7 +121,8 @@ Polymer({
},
fieldInput: {
- type: Object, value: {},
+ type: Object,
+ value: function () { return {}; },
},
},
@@ -136,7 +136,7 @@ Polymer({
fieldChanged: function (ev) {
var el = ev.target;
- this.fieldInput[el.id] = el.value;
+ this.fieldInput[el.name] = el.value;
},
submitClicked: function () {