diff options
Diffstat (limited to 'ui/src/admin')
-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) } |