mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
[client] Don't display the name in the device property table
This commit is contained in:
parent
73cd2a77dc
commit
44d818e3fb
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ class LayerDeviceMarkers {
|
||||||
let info_list = [];
|
let info_list = [];
|
||||||
for(let property in device_info) {
|
for(let property in device_info) {
|
||||||
// Filter out properties we're handling specially
|
// Filter out properties we're handling specially
|
||||||
if(["id", "other"].includes(property)) continue;
|
if(["id", "name", "other"].includes(property)) continue;
|
||||||
|
|
||||||
// Ensure the property is a string - giving special handling to
|
// Ensure the property is a string - giving special handling to
|
||||||
// some property values
|
// some property values
|
||||||
|
|
Loading…
Reference in a new issue