Merge pull request #6690 from volodymyr-babak/bug/edge-fix-delayed-status
[UI][3.4] Fixed bug with incorrect display of delayed status
This commit is contained in:
commit
5fef80a990
@ -138,7 +138,7 @@ export class EdgeDownlinkTableConfig extends EntityTableConfig<EdgeEvent, TimePa
|
||||
}
|
||||
|
||||
private updateEdgeEventStatus(createdTime: number): string {
|
||||
if (this.queueStartTs && createdTime < this.queueStartTs) {
|
||||
if (this.queueStartTs && createdTime <= this.queueStartTs) {
|
||||
return this.translate.instant('edge.deployed');
|
||||
} else {
|
||||
return this.translate.instant('edge.pending');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user