Merge branch 'develop' into sauna

This commit is contained in:
Pieter Vander Vennet 2025-07-04 17:58:33 +02:00
commit 70a6808b5e
13 changed files with 27 additions and 19 deletions

View file

@ -71,7 +71,8 @@ class SubstituteLayer extends Conversion<string | LayerConfigJson, LayerConfigJs
for (const name of names) {
const found = Utils.Clone(state.sharedLayers.get(name))
if (found === undefined) {
context.err("Layer with name " + name + " not found")
const nearbyNames = Utils.sortedByLevenshteinDistance(name, Array.from(state.sharedLayers.keys()))
context.err("Layer with name " + name + " not found. Dit you mean one of "+nearbyNames.slice(0, 3))
continue
}
found["_basedOn"] = name