Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ggetz committed Nov 25, 2024
1 parent 9d68df6 commit e43ea8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Apps/Sandcastle/gallery/AEC Architectural Design.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
const propertyValue = pickedFeature.getProperty(propertyId);

// Reject properties with default values
if (propertyValue !== "" && propertyValue !== undefined) {
if (Cesium.defined(propertyValue) && propertyValue !== "") {
description += `<tr><th>${propertyId}</th><td>${propertyValue}</td></tr>`;
}
}
Expand Down

0 comments on commit e43ea8a

Please sign in to comment.