remove server specs from about page and patch db model

This commit is contained in:
Matt Hill
2021-10-06 09:39:26 -06:00
committed by Aiden McClelland
parent ffa9cac362
commit 8ccad3a437
2 changed files with 0 additions and 14 deletions

View File

@@ -39,15 +39,6 @@
<ion-icon slot="icon-only" name="copy-outline"></ion-icon>
</ion-button>
</ion-item>
<ion-item-divider>Hardware Specs</ion-item-divider>
<ion-item *ngFor="let spec of server.specs | keyvalue : asIsOrder">
<ion-label>
<h2>{{ spec.key }}</h2>
<p>{{ spec.value }}</p>
</ion-label>
</ion-item>
</ion-item-group>
</ion-content>

View File

@@ -25,11 +25,6 @@ export interface ServerInfo {
size: number
downloaded: number
}
specs: {
cpu: string
disk: string
memory: string
}
}
export enum ServerStatus {