Merge develop

This commit is contained in:
Pieter Vander Vennet 2021-10-11 23:33:09 +02:00
commit 8fdb7a6d7f
22 changed files with 536 additions and 141 deletions

View file

@ -55,7 +55,11 @@ export default class SpecialVisualizations {
if (!tags.hasOwnProperty(key)) {
continue
}
parts.push([key, tags[key] ?? "<b>undefined</b>"]);
let v = tags[key]
if(v === ""){
v = "<b>empty string</b>"
}
parts.push([key, v ?? "<b>undefined</b>"]);
}
for(const key of calculatedTags){