NIFI-4739:

- Ensuring the logout action is using a relative link.

This closes #2374
This commit is contained in:
Matt Gilman 2018-01-04 15:54:19 -05:00 committed by Jeff Storck
parent a8817e0238
commit 33b40fb87f
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@
this.logoutCtrl = {
logout: function () {
nfStorage.removeItem("jwt");
window.location = '/nifi';
window.location = '../nifi/login';
}
};
}