From cf918b76b456c77af61125f38efac7f8680621ef Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 31 Aug 2020 15:04:33 +1000 Subject: [PATCH] lint --- js/views/app_view.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/views/app_view.js b/js/views/app_view.js index 0b21359fe..bab2f8343 100644 --- a/js/views/app_view.js +++ b/js/views/app_view.js @@ -22,7 +22,7 @@ openInbox: 'openInbox', }, applyTheme() { - const rtlLocales = ['fa'] + const rtlLocales = ['fa']; const theme = storage.get('theme-setting') || 'light'; this.$el .removeClass('light-theme') @@ -30,7 +30,7 @@ .removeClass('rtl') .addClass(`${theme}-theme`); - const loc = window.i18n.getLocale() + const loc = window.i18n.getLocale(); if (rtlLocales.includes(loc)) { this.$el.addClass('rtl'); }