diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-12 21:02:39 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-12 21:34:29 +0000 |
| commit | 39182a76e4070d3b92af10bf609fef8151bce6e4 (patch) | |
| tree | 806c6e1b1ab421a2631f5e9062a8988480f8ba31 /js/FeedStoreModel.js | |
| parent | 1299d632bdc8b676d3fc2114a1788a2f8f63597c (diff) | |
Address ESLint rule 'eqeqeq'.
https://eslint.org/docs/latest/rules/eqeqeq
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; }, |