fix: fix issue #2 - telemetry not showing in graphs

This commit is contained in:
Georg Bauer
2026-07-25 10:52:56 +02:00
parent 19fe61fc21
commit 7843592400
3 changed files with 38 additions and 27 deletions

View File

@@ -598,9 +598,9 @@ impl App {
),
row![
text(if stats.kv_read_active {
"Read · active"
"Disk read · active"
} else {
"Read"
"Disk read"
})
.size(12)
.color(Color::from_rgb8(67, 194, 203)),
@@ -616,9 +616,9 @@ impl App {
),
row![
text(if stats.kv_write_active {
"Write · active"
"Disk write · active"
} else {
"Write"
"Disk write"
})
.size(12)
.color(Color::from_rgb8(240, 180, 70)),