SUPPORT-8681: fix grid cell renderer
This commit is contained in:
parent
5f130bcf18
commit
54d0182ee3
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