From c5e99a9b3f80d06846f93b99e2b8fab19d289475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sauli=20T=C3=A4hk=C3=A4p=C3=A4=C3=A4?= Date: Thu, 9 Mar 2017 15:12:45 +0200 Subject: [PATCH] Update crud.html --- demo/crud.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/crud.html b/demo/crud.html index fc995d4e2..d85c092f9 100644 --- a/demo/crud.html +++ b/demo/crud.html @@ -141,7 +141,7 @@

CRUD

_add: function(e) { if (this.$.firstname.value !== '' && this.$.lastname.value !== '') { - this.items.unshift({user: {name: {first: this.$.firstname.value, last: this.$.lastname.value}}}); + this.items.unshift({name: {first: this.$.firstname.value, last: this.$.lastname.value}}); this.$.grid.clearCache(); this.$.firstname.value = '';