diff options
author | metamuffin <metamuffin@disroot.org> | 2025-05-04 15:11:11 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-05-04 15:11:11 +0200 |
commit | 3cbe45e24355396645b9a721fdca6d5116bd1c36 (patch) | |
tree | ecc5e61167c47362c49375e542bf6752aad12b09 /ui | |
parent | 0a5c23757c2a0fc8784ea1b5a3ad5b0cba0709e0 (diff) | |
download | jellything-3cbe45e24355396645b9a721fdca6d5116bd1c36.tar jellything-3cbe45e24355396645b9a721fdca6d5116bd1c36.tar.bz2 jellything-3cbe45e24355396645b9a721fdca6d5116bd1c36.tar.zst |
fix live log
Diffstat (limited to 'ui')
-rw-r--r-- | ui/src/admin/log.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/src/admin/log.rs b/ui/src/admin/log.rs index 3669571..8404229 100644 --- a/ui/src/admin/log.rs +++ b/ui/src/admin/log.rs @@ -16,6 +16,9 @@ impl Page for ServerLogPage<'_> { fn title(&self) -> String { "Server Log".to_string() } + fn class(&self) -> Option<&'static str> { + Some("admin_log") + } fn to_render(&self) -> markup::DynRender { markup::new!(@self) } |