Commit 359c442365dccec37cb802d84ee53d1aacc4dbc4
1 parent
f2b10edf
UI: Attribute table disable edit for client side attributes
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -298,7 +298,7 @@ export class AttributeTableComponent extends PageComponent implements AfterViewI |
298 | 298 | if ($event) { |
299 | 299 | $event.stopPropagation(); |
300 | 300 | } |
301 | - if (this.attributeScope === LatestTelemetry.LATEST_TELEMETRY){ | |
301 | + if (this.isClientSideTelemetryTypeMap.get(this.attributeScope)) { | |
302 | 302 | return; |
303 | 303 | } |
304 | 304 | const target = $event.target || $event.srcElement || $event.currentTarget; | ... | ... |