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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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(),
}
}
}