mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
Fix/misc 0.3.0.1 (#1366)
* add solution for os error 2 case * make awaiting result text blue * remove mask button on text inputs until proper solution implemented
This commit is contained in:
@@ -63,7 +63,8 @@ export class HomePage {
|
|||||||
this.error = {
|
this.error = {
|
||||||
code: 2,
|
code: 2,
|
||||||
problem: 'Filesystem I/O error.',
|
problem: 'Filesystem I/O error.',
|
||||||
solution: '',
|
solution:
|
||||||
|
'Repairing the disk could help resolve this issue. This will occur on a restart between the bep and chime. Please DO NOT unplug the drive or Embassy during this time or the situation will become worse.',
|
||||||
details: error.data?.details,
|
details: error.data?.details,
|
||||||
}
|
}
|
||||||
// disk management error - disk needs repair
|
// disk management error - disk needs repair
|
||||||
|
|||||||
@@ -79,8 +79,8 @@
|
|||||||
>
|
>
|
||||||
</ion-input>
|
</ion-input>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
<!-- removing mask button until proper solution implemented -->
|
||||||
<ion-button
|
<!-- <ion-button
|
||||||
*ngIf="spec.type === 'string' && spec.masked"
|
*ngIf="spec.type === 'string' && spec.masked"
|
||||||
slot="end"
|
slot="end"
|
||||||
fill="clear"
|
fill="clear"
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
[name]="unmasked[entry.key] ? 'eye-off-outline' : 'eye-outline'"
|
[name]="unmasked[entry.key] ? 'eye-off-outline' : 'eye-outline'"
|
||||||
size="small"
|
size="small"
|
||||||
></ion-icon>
|
></ion-icon>
|
||||||
</ion-button>
|
</ion-button> -->
|
||||||
<ion-note
|
<ion-note
|
||||||
*ngIf="spec.type === 'number' && spec.units"
|
*ngIf="spec.type === 'number' && spec.units"
|
||||||
slot="end"
|
slot="end"
|
||||||
|
|||||||
@@ -28,7 +28,8 @@
|
|||||||
[placeholder]="options.placeholder"
|
[placeholder]="options.placeholder"
|
||||||
(ionChange)="error = ''"
|
(ionChange)="error = ''"
|
||||||
></ion-input>
|
></ion-input>
|
||||||
<ion-button
|
<!-- removing mask button until proper solution implemented -->
|
||||||
|
<!-- <ion-button
|
||||||
slot="end"
|
slot="end"
|
||||||
*ngIf="options.useMask"
|
*ngIf="options.useMask"
|
||||||
fill="clear"
|
fill="clear"
|
||||||
@@ -40,7 +41,7 @@
|
|||||||
[name]="unmasked ? 'eye-off-outline' : 'eye-outline'"
|
[name]="unmasked ? 'eye-off-outline' : 'eye-outline'"
|
||||||
size="small"
|
size="small"
|
||||||
></ion-icon>
|
></ion-icon>
|
||||||
</ion-button>
|
</ion-button> -->
|
||||||
</ion-item>
|
</ion-item>
|
||||||
<!-- error -->
|
<!-- error -->
|
||||||
<p *ngIf="error">
|
<p *ngIf="error">
|
||||||
|
|||||||
@@ -79,7 +79,7 @@
|
|||||||
<h2 class="bold">
|
<h2 class="bold">
|
||||||
{{ pkg.manifest['health-checks'][health.key].name }}
|
{{ pkg.manifest['health-checks'][health.key].name }}
|
||||||
</h2>
|
</h2>
|
||||||
<p>Awaiting result...</p>
|
<p class="primary">Awaiting result...</p>
|
||||||
</ion-label>
|
</ion-label>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|||||||
Reference in New Issue
Block a user