Fix: loading oneway arrows on multiple layers; fix nullpointer

This commit is contained in:
Pieter Vander Vennet 2024-02-07 20:29:05 +01:00
parent c823e745a3
commit 16784270ce
2 changed files with 20 additions and 11 deletions

View file

@ -312,7 +312,7 @@ export default class PointRenderingConfig extends WithContextLoader {
if (cssLabel) {
label.SetStyle(cssLabel)
} else if (labelOnly) {
return label.SetStyle("transform: translate(-50%, -50%);")
return label?.SetStyle("transform: translate(-50%, -50%);")
}
return new Combine([label]).SetClass("flex flex-col items-center")
})