ui(server): fix reinstall_failed conflict state

This commit is contained in:
Matthew Penner 2023-01-17 15:21:31 -07:00
parent c74314d2ab
commit fbdac5b63f
No known key found for this signature in database
2 changed files with 9 additions and 3 deletions

View file

@ -1,4 +1,10 @@
export type ServerStatus = 'installing' | 'install_failed' | 'suspended' | 'restoring_backup' | null;
export type ServerStatus =
| 'installing'
| 'install_failed'
| 'reinstall_failed'
| 'suspended'
| 'restoring_backup'
| null;
export interface ServerBackup {
uuid: string;