forked from MapComplete/MapComplete
Lots of styling tweaks, add filter links between layers
This commit is contained in:
parent
5cefc4d25f
commit
c15f3d2036
28 changed files with 263 additions and 217 deletions
6
Utils.ts
6
Utils.ts
|
@ -305,6 +305,12 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
|
|||
if (!source.hasOwnProperty(key)) {
|
||||
continue
|
||||
}
|
||||
if (key.startsWith("=")) {
|
||||
const trimmedKey = key.substr(1);
|
||||
target[trimmedKey] = source[key]
|
||||
continue
|
||||
}
|
||||
|
||||
if (key.startsWith("+") || key.endsWith("+")) {
|
||||
const trimmedKey = key.replace("+", "");
|
||||
const sourceV = source[key];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue