forked from MapComplete/MapComplete
Themes: first version of circular economy theme
This commit is contained in:
parent
3acba29198
commit
592be68f09
20 changed files with 1917 additions and 11 deletions
|
@ -630,7 +630,13 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
|
|||
|
||||
for (const key in source) {
|
||||
if (key.startsWith("=")) {
|
||||
const trimmedKey = key.substr(1)
|
||||
const trimmedKey = key.substring(1)
|
||||
target[trimmedKey] = source[key]
|
||||
continue
|
||||
}
|
||||
|
||||
if (key.endsWith("=")) {
|
||||
const trimmedKey = key.substring(0, key.length - 1)
|
||||
target[trimmedKey] = source[key]
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue