Skip to content

Commit 8af707a

Browse files
authored
Fix paragraph properties not displaying (#682)
Fixes #681 For some reason all paragraph properties (those with a large amount of text) were excluded from showing in the popup. <img width="519" height="483" alt="image" src="https://github.com/user-attachments/assets/cee9b30e-648c-4848-a806-3bd6e1241e66" /> <img width="995" height="572" alt="image" src="https://github.com/user-attachments/assets/af7def20-7bcc-4446-8f2b-65933b38628d" />
1 parent 4bb7df4 commit 8af707a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

proxy/js/ui.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,6 @@ function popupContent(feature) {
16051605
.join(', ');
16061606

16071607
const propertyValues = Object.entries(featureCatalog.properties || {})
1608-
.filter(([_, {paragraph}]) => !paragraph)
16091608
.filter(([property, {name, format, link}]) => (properties[property] !== undefined && properties[property] !== null && properties[property] !== '' && properties[property] !== false))
16101609
.map(([property, {name, format, link, paragraph, description}]) => ({
16111610
title: name,

0 commit comments

Comments
 (0)