feat(minor): Allow HTML descriptions on Grids (#27620)
This commit is contained in:
parent
71862505ce
commit
f4ccdff4d6
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue