mirror of
https://github.com/SkyfallWasTaken/arcade-monitor.git
synced 2024-11-10 03:49:40 +00:00
Added Code to Show two decimals places for Price/ticket ratio
This commit is contained in:
parent
3b0e156ad3
commit
583c59d005
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ pub fn format_item_diff(
|
||||||
},
|
},
|
||||||
if let Some(real_price) = real_price {
|
if let Some(real_price) = real_price {
|
||||||
format!(
|
format!(
|
||||||
" _(${real_price} - ${}/hr)_",
|
" _(${real_price} - ${:.2}/hr)_",
|
||||||
(*real_price as f32) / (new.price as f32)
|
(*real_price as f32) / (new.price as f32)
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
@ -285,7 +285,7 @@ mod diff_tests {
|
||||||
Some(
|
Some(
|
||||||
indoc! {"
|
indoc! {"
|
||||||
*Name:* Test
|
*Name:* Test
|
||||||
*Price:* 1 → 2 🔼 _($50 - $25/hr)_"}
|
*Price:* 1 → 2 🔼 _($50 - $25.00/hr)_"}
|
||||||
.into()
|
.into()
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue