ui: eject disks todo

This commit is contained in:
Aaron Greenspan
2021-01-22 15:18:16 -07:00
committed by Aiden McClelland
parent 8c79984e80
commit 5a4e980d31
23 changed files with 35 additions and 115 deletions

View File

@@ -61,7 +61,7 @@ export class AppModel extends MapSubject<AppInstalledFull> {
)
}
// when an app is backing up
// TODO: EJECT-DISKS: we can use this to watch for an app completing its backup process.
watchForBackup (appId: string): Observable<string | undefined> {
const toWatch = super.watch(appId)
if (!toWatch) return of(undefined)

View File

@@ -14,7 +14,7 @@ export interface BaseApp {
export interface AppAvailablePreview extends BaseApp {
versionLatest: string
descriptionShort: string
latestVersionTimestamp: Date
latestVersionTimestamp: Date //used for sorting AAL
}
export type AppAvailableFull =