fix(dynamic-branding): Extract fqn from public meeting
This commit is contained in:
parent
5d41da9358
commit
a65ab1c029
|
@ -13,7 +13,7 @@ export function extractFqnFromPath() {
|
||||||
const parts = window.location.pathname.split('/');
|
const parts = window.location.pathname.split('/');
|
||||||
const len = parts.length;
|
const len = parts.length;
|
||||||
|
|
||||||
return parts.length > 2 ? `${parts[len - 2]}/${parts[len - 1]}` : '';
|
return parts.length > 2 ? `${parts[len - 2]}/${parts[len - 1]}` : parts[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue