mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
recovery drive failing
This commit is contained in:
committed by
Aiden McClelland
parent
13c227399b
commit
1cca7942ae
@@ -52,11 +52,16 @@
|
|||||||
<ion-label>
|
<ion-label>
|
||||||
<h1>{{ partition.label || partition.logicalname }}</h1>
|
<h1>{{ partition.label || partition.logicalname }}</h1>
|
||||||
<h2>{{ partition.capacity | convertBytes }}</h2>
|
<h2>{{ partition.capacity | convertBytes }}</h2>
|
||||||
<p *ngIf="partition['embassy-os'] && partition['embassy-os'].full">
|
<p *ngIf="partitionClickable(partition)">
|
||||||
<ion-text color="success">
|
<ion-text color="success">
|
||||||
Embassy backup detected
|
Embassy backup detected
|
||||||
</ion-text>
|
</ion-text>
|
||||||
</p>
|
</p>
|
||||||
|
<p *ngIf="!partitionClickable(partition)">
|
||||||
|
<ion-text>
|
||||||
|
No Embassy backup detected
|
||||||
|
</ion-text>
|
||||||
|
</p>
|
||||||
</ion-label>
|
</ion-label>
|
||||||
<div *ngIf="partition['embassy-os'] && partition['embassy-os'].full">
|
<div *ngIf="partition['embassy-os'] && partition['embassy-os'].full">
|
||||||
<ion-icon *ngIf="partition['embassy-os'].version.startsWith('0.2')" color="success" slot="end" name="lock-open-outline" size="large"></ion-icon>
|
<ion-icon *ngIf="partition['embassy-os'].version.startsWith('0.2')" color="success" slot="end" name="lock-open-outline" size="large"></ion-icon>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export class LiveApiService extends ApiService {
|
|||||||
|
|
||||||
async importDrive (guid: string) {
|
async importDrive (guid: string) {
|
||||||
const res = await this.http.rpcRequest<SetupEmbassyRes>({
|
const res = await this.http.rpcRequest<SetupEmbassyRes>({
|
||||||
method: 'setup.execute',
|
method: 'setup.attach',
|
||||||
params: { guid },
|
params: { guid },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user