From f956f4402153f511a0a22b4869713378678695b1 Mon Sep 17 00:00:00 2001 From: Linda Nichols Date: Tue, 24 Jun 2014 04:07:17 +0000 Subject: [PATCH] Fixed timing error with editor box list --- lib/enyo-x/source/views/list_relations_editor_box.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/enyo-x/source/views/list_relations_editor_box.js b/lib/enyo-x/source/views/list_relations_editor_box.js index ff258378d..f04a7a783 100644 --- a/lib/enyo-x/source/views/list_relations_editor_box.js +++ b/lib/enyo-x/source/views/list_relations_editor_box.js @@ -99,7 +99,9 @@ trailing:true, white:true, strict: false*/ */ controlValueChanged: function () { // this is getting called before the list is created - //this.$.list.refresh(); + if (this.$.list) { + this.$.list.refresh(); + } return true; }, /** -- 2.39.2