other: remove the percentage sign for CPU usage in CPU widget (#1243)

This commit is contained in:
Clement Tsang
2023-07-04 01:35:39 -04:00
committed by GitHub
parent 7240661aab
commit beef65a460
+1 -1
View File
@@ -46,7 +46,7 @@ impl ColumnHeader for CpuWidgetColumn {
fn text(&self) -> Cow<'static, str> {
match self {
CpuWidgetColumn::CPU => "CPU".into(),
CpuWidgetColumn::Use => "Use%".into(),
CpuWidgetColumn::Use => "Use".into(),
}
}
}