diff options
author | metamuffin <metamuffin@disroot.org> | 2023-12-19 10:40:41 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-12-19 10:40:41 +0100 |
commit | 1c920548bae5f70f31d28c6c0cc753712bb713c3 (patch) | |
tree | 85f7cd3859af551235d7258ef2dbcb0c080a2ef5 /server | |
parent | f0ad31971e53a1c1bfcca2723eea0bd1cbe9ba21 (diff) | |
download | jellything-1c920548bae5f70f31d28c6c0cc753712bb713c3.tar jellything-1c920548bae5f70f31d28c6c0cc753712bb713c3.tar.bz2 jellything-1c920548bae5f70f31d28c6c0cc753712bb713c3.tar.zst |
no more wrapping in the navbar
Diffstat (limited to 'server')
-rw-r--r-- | server/src/routes/ui/account/settings.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/routes/ui/account/settings.rs b/server/src/routes/ui/account/settings.rs index 66a4f88..f14478b 100644 --- a/server/src/routes/ui/account/settings.rs +++ b/server/src/routes/ui/account/settings.rs @@ -40,6 +40,7 @@ fn option_len<'v>(value: &Option<String>, range: Range<usize>) -> form::Result<' fn settings_page(session: Session, flash: Option<MyResult<String>>) -> DynLayoutPage<'static> { LayoutPage { title: "Settings".to_string(), + class: Some("settings"), content: markup::new! { h1 { "Settings" } @if let Some(flash) = &flash { |