mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
fix: limit throttling text length
This commit is contained in:
@@ -85,7 +85,7 @@ impl GpuStatsSection {
|
||||
out
|
||||
})
|
||||
.collect();
|
||||
let text = type_text.join(", ");
|
||||
let text: String = type_text.join(", ").chars().take(30).collect();
|
||||
self.set_throttling(text);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user