diff --git a/modules/web_viewer/templates/feeds.html b/modules/web_viewer/templates/feeds.html index d712d4f..c1198dd 100644 --- a/modules/web_viewer/templates/feeds.html +++ b/modules/web_viewer/templates/feeds.html @@ -201,20 +201,20 @@
- +}"> Configure API request and parsing. Use params for query parameters (e.g., AccessCode for WSDOT) or headers for HTTP headers. @@ -230,21 +230,21 @@
- + "logic": "AND" +}"> Only send items that match these conditions. Leave empty to send all items.
Operators: equals, not_equals, in, not_in, matches (regex), not_matches, contains, not_contains, within_days, within_weeks (see docs/FEEDS.md)
@@ -263,10 +263,10 @@
- + Sort items before processing. Leave empty to use default order (oldest first).
Field: Field path to sort by (e.g., raw.LastUpdatedTime, raw.Priority, published)
diff --git a/modules/web_viewer/templates/mesh.html b/modules/web_viewer/templates/mesh.html index 25b4b8f..eeda31e 100644 --- a/modules/web_viewer/templates/mesh.html +++ b/modules/web_viewer/templates/mesh.html @@ -392,7 +392,7 @@ let highlightedPath = null; // Currently highlighted path data let pathHighlightTimeout = null; // Debounce timer for path resolution - const PREFIX_HEX_CHARS = {{ prefix_hex_chars|default(2) }}; + const PREFIX_HEX_CHARS = parseInt('{{ prefix_hex_chars|default(2) }}', 10); // Graph prefix length from edges API (2, 4, or 6 hex chars); used for node prefix display and node fetch. let graphPrefixHexChars = PREFIX_HEX_CHARS; // Format prefix for display: add byte count when multi-byte (2 or 3 bytes)