From 9a9d3805d80495af53971ff2d8e81e3ce59fdde1 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Wed, 27 Jan 2016 12:32:53 +0100 Subject: [PATCH] Bring back noop function which was accidentally destroyed --- app/components/log-content.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/components/log-content.js b/app/components/log-content.js index 44e10692..33da53b5 100644 --- a/app/components/log-content.js +++ b/app/components/log-content.js @@ -227,5 +227,8 @@ export default Ember.Component.extend({ toggleLog() { this.toggleProperty('logIsVisible'); } - } + }, + + // don't remove this, it's needed as an empty willChange callback + noop: function() {} });