status/gui/modules/webservicedashboard.svelte

15 lines
319 B
Svelte
Raw Normal View History

2022-07-13 09:16:07 +00:00
<script>
import { createEventDispatcher, onMount } from 'svelte';
const dispatch = createEventDispatcher();
onMount(() => {
let url = window.location.href;
if (!url.endsWith('/')) url += '/';
url += 'status/dashboard';
window.open(url, '_blank').focus();
dispatch('close');
});
</script>