aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/notice-controller.js
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-12-28 09:27:48 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-12-28 09:27:48 +0800
commit414f89668eb554e82ab22d3b3080322057388266 (patch)
treeb58edf195385e1238f9e6ce8c1fe9a12aa5fdbdb /app/scripts/notice-controller.js
parent3d627e869bb7ba1dc0316ad179f9fff07e5cb83c (diff)
downloadtangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.tar
tangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.tar.gz
tangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.tar.bz2
tangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.tar.lz
tangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.tar.xz
tangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.tar.zst
tangerine-wallet-browser-414f89668eb554e82ab22d3b3080322057388266.zip
Fix some silly linting issues.
Diffstat (limited to 'app/scripts/notice-controller.js')
-rw-r--r--app/scripts/notice-controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/notice-controller.js b/app/scripts/notice-controller.js
index db2b8c4f4..14a63eae7 100644
--- a/app/scripts/notice-controller.js
+++ b/app/scripts/notice-controller.js
@@ -77,7 +77,7 @@ module.exports = class NoticeController extends EventEmitter {
return uniqBy(oldNotices.concat(newNotices), 'id')
}
- _filterNotices(notices) {
+ _filterNotices (notices) {
return notices.filter((newNotice) => {
if ('version' in newNotice) {
const satisfied = semver.satisfies(this.version, newNotice.version)