Merge pull request #10108 from rusikv/bug/chart-card-value-color

Fixed chart card value color differs from other widgets with same values and range colors configs
This commit is contained in:
Igor Kulikov 2024-02-12 13:50:27 +02:00 committed by GitHub
commit 7a892b9323
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -241,8 +241,8 @@ export class AggregatedValueCardWidgetComponent implements OnInit, AfterViewInit
} else {
aggValue.value = 'N/A';
}
aggValue.color.update(value);
const numeric = formatNumberValue(value, (aggValue.key.decimals || this.ctx.decimals));
aggValue.color.update(numeric);
if (aggValue.showArrow && isDefined(numeric)) {
aggValue.upArrow = numeric > 0;
aggValue.downArrow = numeric < 0;