diff options
Diffstat (limited to 'ui/src/components/node_list.rs')
| -rw-r--r-- | ui/src/components/node_list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/node_list.rs b/ui/src/components/node_list.rs index c3571de..cea6cb1 100644 --- a/ui/src/components/node_list.rs +++ b/ui/src/components/node_list.rs @@ -9,7 +9,7 @@ use jellycommon::{jellyobject::Object, *}; markup::define! { NodeList<'a>(ri: &'a RenderInfo<'a>, nl: Object<'a>) { - ul.nodelist { @for nku in nl.iter(NODELIST_ITEM) { + ul.nl.grid { @for nku in nl.iter(NODELIST_ITEM) { li { @NodeCard { ri, nku } } }} } |