diff options
Diffstat (limited to 'js/FeedStoreModel.js')
| -rw-r--r-- | js/FeedStoreModel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/FeedStoreModel.js b/js/FeedStoreModel.js index befc441af..fa8f730d6 100644 --- a/js/FeedStoreModel.js +++ b/js/FeedStoreModel.js @@ -56,7 +56,7 @@ define(["dojo/_base/declare", "dijit/tree/ForestStoreModel"], function (declare) }, hasCats: function () { if (this.store && this.store._itemsByIdentity) - return this.store._itemsByIdentity['CAT:-1'] != undefined; + return this.store._itemsByIdentity['CAT:-1'] !== undefined; else return false; }, |