+
Hostname
The name your instance will have on your network
+ ${this._hostInfo
+ ? html`
+
+
+
+ ${this.hass.localize(
+ "ui.panel.config.storage.datadisk.title"
+ )}
+
+
+ `
+ : ""}
${this._error
? html`
@@ -79,13 +96,6 @@ class HaConfigSectionStorage extends LitElement {
`
: ""}
-
-
- ${this.hass.localize(
- "ui.panel.config.storage.datadisk.title"
- )}
-
-
`
: ""}
@@ -118,26 +128,16 @@ class HaConfigSectionStorage extends LitElement {
margin: 0 auto;
}
ha-card {
- max-width: 500px;
+ max-width: 600px;
margin: 0 auto;
- height: 100%;
justify-content: space-between;
flex-direction: column;
display: flex;
}
- .card-actions {
- height: 48px;
- border-top: none;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
.card-content {
display: flex;
justify-content: space-between;
flex-direction: column;
- padding: 16px 16px 0 16px;
}
`;
}
diff --git a/src/panels/config/system-health/ha-config-system-health.ts b/src/panels/config/system-health/ha-config-system-health.ts
index 8c15021747..efc357cf2c 100644
--- a/src/panels/config/system-health/ha-config-system-health.ts
+++ b/src/panels/config/system-health/ha-config-system-health.ts
@@ -452,7 +452,7 @@ class HaConfigSystemHealth extends SubscribeMixin(LitElement) {
}
ha-card {
display: block;
- max-width: 500px;
+ max-width: 600px;
margin: 0 auto;
padding-bottom: 16px;
margin-bottom: max(24px, env(safe-area-inset-bottom));
diff --git a/src/translations/en.json b/src/translations/en.json
index 500a94caf5..5ab75292b8 100755
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -3212,8 +3212,8 @@
},
"system_health": {
"caption": "System Health",
- "cpu_usage": "CPU Usage",
- "ram_usage": "RAM Usage",
+ "cpu_usage": "Process Usage",
+ "ram_usage": "Memory Usage",
"core_stats": "Core Stats",
"supervisor_stats": "Supervisor Stats"
}