This commit is contained in:
2022-08-29 12:22:17 +02:00
parent e11645932d
commit 9b4b71d25f
6 changed files with 22 additions and 17 deletions

View File

@ -5,7 +5,9 @@
onMount(() => {
let url = window.location.href;
if (!url.endsWith('/')) url += '/';
if (!url.endsWith('/')) {
url += '/';
}
url += 'status/dashboard';
window.open(url, '_blank').focus();