ui: add commit hash to footer on dashboard and summarizer

This commit is contained in:
Thomas Cravey 2025-08-16 20:18:01 -05:00
parent 0732b50a3d
commit c140b36363

View file

@ -391,6 +391,7 @@ func (s *Server) handleUI(w http.ResponseWriter, r *http.Request) {
<small>` + s.Version + `</small> <small>` + s.Version + `</small>
</footer> </footer>
</body> </body>
<footer><small>` + s.Version + ` (` + s.Commit + `)</small></footer>
</html>` </html>`
_, _ = w.Write([]byte(page)) _, _ = w.Write([]byte(page))
} }