File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1- export type ServerStatus = 'installing' | 'install_failed' | 'suspended' | 'restoring_backup' | null ;
1+ export type ServerStatus =
2+ | 'installing'
3+ | 'install_failed'
4+ | 'reinstall_failed'
5+ | 'suspended'
6+ | 'restoring_backup'
7+ | null ;
28
39export interface ServerBackup {
410 uuid : string ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default () => {
1212 ( state ) => state . server . data ?. isNodeUnderMaintenance || false
1313 ) ;
1414
15- return status === 'installing' || status === 'install_failed' ? (
15+ return status === 'installing' || status === 'install_failed' || status === 'reinstall_failed' ? (
1616 < ScreenBlock
1717 title = { 'Running Installer' }
1818 image = { ServerInstallSvg }
@@ -36,7 +36,7 @@ export default () => {
3636 image = { ServerRestoreSvg }
3737 message = {
3838 isTransferring
39- ? 'Your server is being transfered to a new node, please check back later.'
39+ ? 'Your server is being transferred to a new node, please check back later.'
4040 : 'Your server is currently being restored from a backup, please check back in a few minutes.'
4141 }
4242 />
You can’t perform that action at this time.
0 commit comments