link to public dashboard in admin options, add return button do public dashboard

This commit is contained in:
Christoph Kluge
2025-12-16 13:54:17 +01:00
parent 60a69aa0a2
commit 102109388b
5 changed files with 45 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
Properties:
- `ncontent String`: The homepage notice content
- `clusters [String]`: The available clusternames
-->
<script>
@@ -17,7 +18,8 @@
/* Svelte 5 Props */
let {
ncontent
ncontent,
clusters
} = $props();
/* Const Init*/
@@ -66,6 +68,6 @@
<Col>
<EditProject reloadUser={() => getUserList()} />
</Col>
<Options config={ccconfig}/>
<Options config={ccconfig} {clusters}/>
<NoticeEdit {ncontent}/>
</Row>