mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-01-05 18:38:23 +01:00
use format! for rounding to fix arm issue
This commit is contained in:
parent
a8870eef0d
commit
4c3727b4a3
1 changed files with 1 additions and 3 deletions
|
@ -242,9 +242,7 @@ pub fn get_display_size(size: i32) -> String {
|
|||
}
|
||||
}
|
||||
|
||||
// Round to two decimals
|
||||
let size = ((size * 100.) as f32).round() / 100.;
|
||||
format!("{} {}", size, UNITS[unit_counter])
|
||||
format!("{:.2} {}", size, UNITS[unit_counter])
|
||||
}
|
||||
|
||||
pub fn get_uuid() -> String {
|
||||
|
|
Loading…
Reference in a new issue