BUG: acces to app struct ifrom the controllers is missing

This commit is contained in:
Simon Martens
2026-01-14 13:59:38 +01:00
parent 163aeac820
commit d4881a589a
3 changed files with 69 additions and 9 deletions

View File

@@ -14,8 +14,8 @@ func (h *HTML) SetKey(key string) {
h.Set(KEY_FIELD, key)
}
func (h *HTML) HTML() string {
return h.GetString(HTML_FIELD)
func (h *HTML) HTML() any {
return h.GetRaw(HTML_FIELD)
}
func (h *HTML) SetHTML(html string) {