hosting: Copy ID button for backups when developer mode is on (#5681)

* Copy ID button in backups tab

* Remove codex slop
This commit is contained in:
François-Xavier Talbot
2026-03-26 20:18:33 -04:00
committed by GitHub
parent c5a0c71424
commit b68aeddedc
3 changed files with 25 additions and 0 deletions

View File

@@ -100,6 +100,7 @@
:restore-disabled="backupRestoreDisabled"
:kyros-url="server.node?.instance"
:jwt="server.node?.token"
:show-copy-id-action="showCopyIdAction"
:show-debug-info="showDebugInfo"
@download="() => triggerDownloadAnimation()"
@rename="() => renameBackupModal?.show(backup)"
@@ -171,6 +172,7 @@ const { server, worldId, backupsState, markBackupCancelled, busyReasons } =
const props = defineProps<{
isServerRunning: boolean
showCopyIdAction?: boolean
showDebugInfo?: boolean
}>()