chore: cleanup and small misc fixes

display success alert if on latest EOS after check for update

fix bug with loader dismiss after alert present

fix restart button on update complete alert and fix mocks to account for this state

fix make clean and adjust default registry names
This commit is contained in:
Lucy Cifferello
2022-06-14 18:38:36 -06:00
committed by Lucy C
parent 4ad9886517
commit 37304a9d92
28 changed files with 221 additions and 130 deletions

View File

@@ -187,7 +187,6 @@ export class MockApiService extends ApiService {
value: initialProgress,
},
]
return this.withRevision(patch, 'updating')
}
@@ -860,6 +859,16 @@ export class MockApiService extends ApiService {
},
]
this.updateMock(patch4)
// set patch indicating update is complete
await pauseFor(100)
const patch6 = [
{
op: PatchOp.REPLACE,
path: '/server-info/status-info',
value: Mock.ServerUpdated,
},
]
this.updateMock(patch6)
}, 1000)
}