aboutsummaryrefslogtreecommitdiff
path: root/ui/src/components/node_page.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/node_page.rs')
-rw-r--r--ui/src/components/node_page.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/src/components/node_page.rs b/ui/src/components/node_page.rs
index 17e923c..18b1d58 100644
--- a/ui/src/components/node_page.rs
+++ b/ui/src/components/node_page.rs
@@ -175,7 +175,9 @@ pub fn aspect_class(node: Object<'_>) -> &'static str {
match kind {
KIND_VIDEO | KIND_EPISODE => "aspect-thumb",
KIND_COLLECTION => "aspect-land",
- KIND_SEASON | KIND_SHOW | KIND_SERIES | KIND_MOVIE | KIND_SHORTFORMVIDEO => "aspect-port",
+ KIND_SEASON | KIND_SHOW | KIND_PERSON | KIND_SERIES | KIND_MOVIE | KIND_SHORTFORMVIDEO => {
+ "aspect-port"
+ }
KIND_CHANNEL | KIND_MUSIC | _ => "aspect-square",
}
}