zskarte / zskarte-client

Zivilschutz-Karte allows to draw situation maps for disaster management
https://www.zskarte.ch/
MIT License
13 stars 8 forks source link

make showName can be disabled, fix signature defaults #396

Closed swerder closed 7 months ago

swerder commented 7 months ago

Removing the flag on showName had no effect, the problem was the signature default apply logic with ||. As the value was false the else case was taken. I adjust it to ??, the Nullish coalescing operator, that only apply the default value if the current is null or undefined.