Fix html widget not having a title in a group

pull/706/merge
Svilen Markov 2025-06-19 15:30:50 +07:00
parent c56b9df880
commit de89512bd8
1 changed files with 1 additions and 1 deletions

@ -10,7 +10,7 @@ type htmlWidget struct {
}
func (widget *htmlWidget) initialize() error {
widget.withTitle("").withError(nil)
widget.withTitle("HTML").withError(nil)
return nil
}