forked from MapComplete/MapComplete
Small fixes for the GRB theme and value substitution
This commit is contained in:
parent
328dc5577c
commit
71f4d4091e
17 changed files with 798 additions and 74 deletions
11
Utils.ts
11
Utils.ts
|
@ -85,5 +85,16 @@ export class Utils {
|
|||
}
|
||||
return newArr;
|
||||
}
|
||||
|
||||
public static MergeTags(a :any, b: any){
|
||||
const t = {};
|
||||
for (const k in a) {
|
||||
t[k] = a[k];
|
||||
}
|
||||
for (const k in b) {
|
||||
t[k] = b[k];
|
||||
}
|
||||
return t;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue