1
2
Fork 0

ticker-serve: fix doctype

Dieser Commit ist enthalten in:
Astro 2021-01-14 16:38:18 +01:00
Ursprung 4520d60652
Commit 3bc618204b
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -138,7 +138,7 @@ fn render_index(app_state: &AppState) -> String {
</body>
</html>
);
format!("<DOCTYPE html>\n{}", doc.to_string())
format!("<!DOCTYPE html>\n{}", doc.to_string())
}
pub fn index(state: State) -> (State, Response<Body>) {