diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-19 18:06:21 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-19 18:06:21 +0100 |
| commit | 962309ddcb033e0032258d6badebb90415a34e3d (patch) | |
| tree | 64a0bde3c6ddfefa334c71314d699b9a00fad0bf /ui/src/components | |
| parent | c545bdbc10ae5a55f991e03260e6a74b92a75fda (diff) | |
| download | jellything-962309ddcb033e0032258d6badebb90415a34e3d.tar jellything-962309ddcb033e0032258d6badebb90415a34e3d.tar.bz2 jellything-962309ddcb033e0032258d6badebb90415a34e3d.tar.zst | |
omdb import plugin
Diffstat (limited to 'ui/src/components')
| -rw-r--r-- | ui/src/components/props.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/components/props.rs b/ui/src/components/props.rs index 8f7bfc3..c11dca6 100644 --- a/ui/src/components/props.rs +++ b/ui/src/components/props.rs @@ -47,8 +47,8 @@ markup::define! { RTYP_YOUTUBE_LIKES => {p.likes{ @format_count(value as usize) " Likes" }} RTYP_YOUTUBE_VIEWS => {p{ @format_count(value as usize) " Views" }} RTYP_YOUTUBE_SUBSCRIBERS => {p{ @format_count(value as usize) " Subscribers" }} - RTYP_ROTTEN_TOMATOES => {p.rating{ @value " Tomatoes" }} - RTYP_METACRITIC if *full => {p{ "Metacritic Score: " @value }} + RTYP_ROTTEN_TOMATOES => {p.rating{ "Rotten Tomatoes: " @value "%" }} + RTYP_METACRITIC if *full => {p.rating{ "Metacritic: " @value "/100" }} RTYP_IMDB => {p.rating{ "IMDb " @value }} RTYP_TMDB => {p.rating{ "TMDB " @format!("{:.01}", value) }} RTYP_TRAKT => {p.rating{ "Trakt " @format!("{:.01}", value) }} |