* [pdm-devel] [PATCH datacenter-manager] ui: pve/pbs: fix capitalization of 'Server Load'
@ 2025-12-03 14:38 Lukas Wagner
2025-12-03 15:05 ` [pdm-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Lukas Wagner @ 2025-12-03 14:38 UTC (permalink / raw)
To: pdm-devel
Reported-by: Max Carrara <m.carrara@proxmox.com>
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
---
ui/src/pbs/node/overview.rs | 2 +-
ui/src/pve/node/overview.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/src/pbs/node/overview.rs b/ui/src/pbs/node/overview.rs
index da5a4085..b63d45f2 100644
--- a/ui/src/pbs/node/overview.rs
+++ b/ui/src/pbs/node/overview.rs
@@ -243,7 +243,7 @@ impl yew::Component for PbsNodeOverviewPanelComp {
)
.with_child(
RRDGraph::new(self.time_data.clone())
- .title(tr!("Server load"))
+ .title(tr!("Server Load"))
.render_value(|v: &f64| {
if v.is_finite() {
format!("{:.2}", v)
diff --git a/ui/src/pve/node/overview.rs b/ui/src/pve/node/overview.rs
index cd9bc014..c07180b0 100644
--- a/ui/src/pve/node/overview.rs
+++ b/ui/src/pve/node/overview.rs
@@ -247,7 +247,7 @@ impl yew::Component for PveNodeOverviewPanelComp {
)
.with_child(
RRDGraph::new(self.time_data.clone())
- .title(tr!("Server load"))
+ .title(tr!("Server Load"))
.render_value(|v: &f64| {
if v.is_finite() {
format!("{:.2}", v)
--
2.47.3
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-12-03 15:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-03 14:38 [pdm-devel] [PATCH datacenter-manager] ui: pve/pbs: fix capitalization of 'Server Load' Lukas Wagner
2025-12-03 15:05 ` [pdm-devel] applied: " Thomas Lamprecht
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.