fix template rendering for help

This commit is contained in:
glyph 2022-01-13 15:48:55 +02:00
parent 60a0d7f293
commit a5f0d991fa
1 changed files with 1 additions and 1 deletions

View File

@ -29,5 +29,5 @@ pub fn help(flash: Option<FlashMessage>) -> Template {
context.insert("flash_msg", &Some(flash.message().to_string()));
};
Template::render("settings/menu", &context.into_json())
Template::render("help", &context.into_json())
}