feat(minor): Allow HTML descriptions on Grids (#27620)

This commit is contained in:
Marica 2024-09-02 20:13:01 +02:00 committed by GitHub
parent 71862505ce
commit f4ccdff4d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -139,7 +139,7 @@ export default class Grid {
set_grid_description() {
let description_wrapper = $(this.parent).find(".grid-description");
if (this.df.description) {
description_wrapper.text(__(this.df.description));
description_wrapper.html(__(this.df.description));
} else {
description_wrapper.hide();
}