Browse Source
Merge pull request #2820 from ChantsovaEkaterina/bug/digital-gauge-data-displaying-mobile
[2.5.1]Digital gauge: fix data displaying in mobile browser
pull/2830/head
Igor Kulikov
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
ui/src/app/widget/lib/canvas-digital-gauge.js
|
|
|
@ -397,7 +397,7 @@ export default class TbCanvasDigitalGauge { |
|
|
|
} |
|
|
|
var value = tvPair[1]; |
|
|
|
if(value !== this.gauge.value) { |
|
|
|
if (!this.ctx.settings.animation) { |
|
|
|
if (!this.ctx.settings.animation || this.ctx.isMobile) { |
|
|
|
this.gauge._value = value; |
|
|
|
} |
|
|
|
this.gauge.value = value; |
|
|
|
|