diff options
author | ppoulard <philippe.poulard@inria.fr> | 2018-07-03 16:08:18 +0200 |
---|---|---|
committer | ppoulard <philippe.poulard@inria.fr> | 2018-07-03 16:08:18 +0200 |
commit | 49a89b80cfec69d715e8b13db540d10c9fa97ffe (patch) | |
tree | 194caaa5b91e9a0f3bf9232dccb551680021d6f3 /client | |
parent | ee81775dc8306a9e88d6c7573864f12269f78c01 (diff) | |
download | wekan-49a89b80cfec69d715e8b13db540d10c9fa97ffe.tar.gz wekan-49a89b80cfec69d715e8b13db540d10c9fa97ffe.tar.bz2 wekan-49a89b80cfec69d715e8b13db540d10c9fa97ffe.zip |
Fix QA
Diffstat (limited to 'client')
-rw-r--r-- | client/components/main/layouts.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/main/layouts.js b/client/components/main/layouts.js index ab47c8ed..943a94e7 100644 --- a/client/components/main/layouts.js +++ b/client/components/main/layouts.js @@ -43,7 +43,7 @@ Template.userFormsLayout.helpers({ isCas() { return Meteor.settings.public && Meteor.settings.public.cas && - Meteor.settings.public.cas.loginUrl + Meteor.settings.public.cas.loginUrl; }, casSignInLabel() { @@ -59,7 +59,7 @@ Template.userFormsLayout.events({ }, 'click button#cas'() { Meteor.loginWithCas(function() { - if (FlowRouter.getRouteName() == 'atSignIn') { + if (FlowRouter.getRouteName() ==== 'atSignIn') { FlowRouter.go('/'); } }); |