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

@@ -100,7 +100,7 @@ export class AppBackupPage {
m.onWillDismiss().then(res => {
const data = res.data
if (data.cancel) return
// we hard code the 'eject' last argument to be false, until ejection is an option in the UI.
// TODO: EJECT-DISKS we hard code the 'eject' last argument to be false, until ejection is an option in the UI. When it is, add it to the data object above ^
return this.create(disk, partition, data.password, false)
})

View File

@@ -39,4 +39,4 @@
</ion-button>
</div>
</div>
</ion-content>
</ion-content>

View File

@@ -5,4 +5,4 @@
align-items: center;
height: 100%;
min-height: 100px;
}
}

View File

@@ -28,7 +28,7 @@ export class OSWelcomePage {
.then(() => this.apiService.acknowledgeOSWelcome(this.config.version))
.catch(console.error)
// return false to skip subsequent alert modals
// return false to skip subsequent alert modals (e.g. check for updates modals)
// return true to show subsequent alert modals
return this.modalCtrl.dismiss(this.autoCheckUpdates)
}