YARN-8469. [UI2] URL needs to be trimmed to handle index.html redirection while accessing via knox. Contributed by Sunil Govindan.

This commit is contained in:
Rohith Sharma K S 2018-06-29 10:21:25 -07:00
parent 469b29c081
commit a820738e34

View File

@ -205,5 +205,13 @@ export default {
const skipTrailingSlash = function(path) {
path = path.replace('ui2/', '');
return path.replace(/\/$/, '');
path = path.replace(/\/$/, '');
console.log('base url:' + path)
if(path.includes("redirect")) {
var to = path.lastIndexOf('/');
to = to == -1 ? path.length : to + 1;
path = path.substring(0, to);
console.log('base url after redirect:' + path)
}
return path;
};