Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Update @commitlint/config-angular to the latest version 🚀 #578

Merged
merged 4 commits into from
Oct 16, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style(js): add catch statement to promise chain
flagged by eslint promise/catch-or-return
  • Loading branch information
ChristianMurphy committed Oct 15, 2017
commit 49c2ad96ed65600eb7b0a0798f11324a0042c839
3 changes: 2 additions & 1 deletion components/portal/timeout/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ define(['angular'], function(angular) {
.finally(function() {
alert = undefined;
$window.location.replace(MISC_URLS.loginURL);
});
})
.catch($log.error);
}

init();
Expand Down