mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix login redirection in devicemgt react app
This commit is contained in:
parent
3f4acef9f0
commit
efe5cda576
@ -101,7 +101,12 @@ class NormalLoginForm extends React.Component {
|
||||
axios.post(window.location.origin+ config.serverConfig.loginUri, request
|
||||
).then(res => {
|
||||
if (res.status === 200) {
|
||||
window.location = window.location.origin+ "/entgra";
|
||||
let redirectUrl = window.location.origin + "/entgra";
|
||||
const searchParams = new URLSearchParams(window.location.search);
|
||||
if (searchParams.has("redirect")) {
|
||||
redirectUrl = searchParams.get("redirect");
|
||||
}
|
||||
window.location = redirectUrl;
|
||||
}
|
||||
}).catch(function (error) {
|
||||
if (error.response.status === 400) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user