From e43ea8a1e2704093b821ff9fdc42c39e94a11818 Mon Sep 17 00:00:00 2001 From: ggetz Date: Mon, 25 Nov 2024 09:32:42 -0500 Subject: [PATCH] Code style fix --- Apps/Sandcastle/gallery/AEC Architectural Design.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apps/Sandcastle/gallery/AEC Architectural Design.html b/Apps/Sandcastle/gallery/AEC Architectural Design.html index f2b5f9ec18a..00e9e76cf14 100644 --- a/Apps/Sandcastle/gallery/AEC Architectural Design.html +++ b/Apps/Sandcastle/gallery/AEC Architectural Design.html @@ -134,7 +134,7 @@ const propertyValue = pickedFeature.getProperty(propertyId); // Reject properties with default values - if (propertyValue !== "" && propertyValue !== undefined) { + if (Cesium.defined(propertyValue) && propertyValue !== "") { description += `${propertyId}${propertyValue}`; } }