Update display
This commit is contained in:
parent
48119e80a5
commit
46c61ca078
@ -239,12 +239,21 @@ impl<'a> ArtistOverlay<'a> {
|
||||
|
||||
let item_indent = " ";
|
||||
let list_indent = " - ";
|
||||
|
||||
let double_item_indent = format!("{item_indent}{item_indent}");
|
||||
let double_list_indent = format!("{item_indent}{list_indent}");
|
||||
|
||||
let properties = Paragraph::new(format!(
|
||||
"Artist: {}\n\n{item_indent}\
|
||||
MusicBrainz: {}{}",
|
||||
MusicBrainz: {}\n{item_indent}\
|
||||
Properties: {}",
|
||||
artist.map(|a| a.id.name.as_str()).unwrap_or(""),
|
||||
Self::opt_opt_to_str(artist.map(|a| a.musicbrainz.as_ref())),
|
||||
Self::opt_hashmap_to_string(artist.map(|a| &a.properties), item_indent, list_indent),
|
||||
Self::opt_hashmap_to_string(
|
||||
artist.map(|a| &a.properties),
|
||||
&double_item_indent,
|
||||
&double_list_indent
|
||||
),
|
||||
));
|
||||
|
||||
ArtistOverlay { properties }
|
||||
|
Loading…
Reference in New Issue
Block a user