mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Make number formatting inclusive
This commit is contained in:
parent
138f8320e9
commit
21763c51cd
1 changed files with 2 additions and 2 deletions
|
@ -176,9 +176,9 @@ pub fn rewrite_url(text: &str) -> String {
|
|||
|
||||
// Append `m` and `k` for millions and thousands respectively
|
||||
pub fn format_num(num: i64) -> String {
|
||||
if num > 1_000_000 {
|
||||
if num >= 1_000_000 {
|
||||
format!("{}m", num / 1_000_000)
|
||||
} else if num > 1000 {
|
||||
} else if num >= 1000 {
|
||||
format!("{}k", num / 1_000)
|
||||
} else {
|
||||
num.to_string()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue