Merge branch 'feature/SUPPORT-8681_fix_renderer' into hotfix/1.9.2
This commit is contained in:
commit
28aee7960d
1 changed files with 1 additions and 1 deletions
|
|
@ -13,6 +13,6 @@ export class ValueWithPrefixRenderer implements GridCellValueRenderer {
|
|||
|
||||
render(params: ICellRendererParams): HTMLElement | string {
|
||||
let value = params.valueFormatted ? params.valueFormatted : params.value;
|
||||
return `${this.label} ${value}`;
|
||||
return value ? `${this.label} ${value}` : value;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue