Tweaked a minor formatting issue in the status ui to make the Radarr Version and Uptime bold
This commit is contained in:
@@ -534,7 +534,8 @@ fn draw_stats_context<B: Backend>(f: &mut Frame<'_, B>, app: &App, area: Rect) {
|
|||||||
"Radarr Version: {}",
|
"Radarr Version: {}",
|
||||||
app.data.radarr_data.version
|
app.data.radarr_data.version
|
||||||
)))
|
)))
|
||||||
.block(borderless_block());
|
.block(borderless_block())
|
||||||
|
.style(style_bold());
|
||||||
|
|
||||||
let uptime = Utc::now().sub(start_time.to_owned());
|
let uptime = Utc::now().sub(start_time.to_owned());
|
||||||
let days = uptime.num_days();
|
let days = uptime.num_days();
|
||||||
@@ -554,7 +555,8 @@ fn draw_stats_context<B: Backend>(f: &mut Frame<'_, B>, app: &App, area: Rect) {
|
|||||||
seconds,
|
seconds,
|
||||||
width = 2
|
width = 2
|
||||||
)))
|
)))
|
||||||
.block(borderless_block());
|
.block(borderless_block())
|
||||||
|
.style(style_bold());
|
||||||
|
|
||||||
let storage =
|
let storage =
|
||||||
Paragraph::new(Text::from("Storage:")).block(borderless_block().style(style_bold()));
|
Paragraph::new(Text::from("Storage:")).block(borderless_block().style(style_bold()));
|
||||||
|
|||||||
Reference in New Issue
Block a user