Merge pull request #9795 from Dmitriymush/bug-fix/value-card-widget

Added additional check for string and empty string in value card widget.
This commit is contained in:
Igor Kulikov 2023-12-08 19:43:04 +02:00 committed by GitHub
commit fa6466f14e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,7 +183,7 @@ export class ValueCardWidgetComponent implements OnInit, AfterViewInit, OnDestro
const tsValue = getSingleTsValue(this.ctx.data); const tsValue = getSingleTsValue(this.ctx.data);
let ts; let ts;
let value; let value;
if (tsValue && isDefinedAndNotNull(tsValue[1])) { if (tsValue && isDefinedAndNotNull(tsValue[1]) && tsValue[0] !== 0) {
ts = tsValue[0]; ts = tsValue[0];
value = tsValue[1]; value = tsValue[1];
this.valueText = formatValue(value, this.decimals, this.units, false); this.valueText = formatValue(value, this.decimals, this.units, false);