Fixes: https://tracker.ceph.com/issues/41797
Signed-off-by: Volker Theile <vtheile@suse.com>
(cherry picked from commit
5730883b7e7c80d5f3587d1e997343e96668a21a)
Conflicts:
src/pybind/mgr/dashboard/frontend/src/app/core/auth/sso/sso-not-found/sso-not-found.component.html
src/pybind/mgr/dashboard/frontend/src/app/core/not-found/not-found.component.html
- master is using a newer version of boostrap, had to keep the old
css classes
<h4 i18n>Return to <a class="sso-logout" [href]="logoutUrl">Login Page</a>. You'll be logged out from the Identity Provider when you retry logging in.</h4>
<img class="img-responsive center-block img-rounded"
- src="/assets/1280px-Nautilus_Octopus.jpg">
+ src="assets/1280px-Nautilus_Octopus.jpg">
<span>
"<a href="https://www.flickr.com/photos/146401137@N06/40335060661">Nautilus Octopus</a>" by Jin Kemoole is licensed under
<a rel="nofollow"
<h1 i18n>Sorry, we could not find what you were looking for</h1>
<img class="img-responsive center-block img-rounded"
- src="/assets/1280px-Nautilus_Octopus.jpg">
+ src="assets/1280px-Nautilus_Octopus.jpg">
<span>
"<a href="https://www.flickr.com/photos/146401137@N06/40335060661">Nautilus Octopus</a>" by Jin Kemoole is licensed under
<a rel="nofollow"
return observableOf(true);
}
const config = route.data['moduleStatusGuardConfig'];
- return this.http.get(`/api/${config.apiPath}/status`).pipe(
+ return this.http.get(`api/${config.apiPath}/status`).pipe(
map((resp: any) => {
if (!resp.available) {
this.router.navigate([config.redirectTo, resp.message || '']);