forked from MapComplete/MapComplete
Merge branch 'master' into develop
This commit is contained in:
commit
16a39b0ea8
35 changed files with 824 additions and 38293 deletions
|
@ -2,7 +2,7 @@ import {Utils} from "../Utils";
|
|||
|
||||
export default class Constants {
|
||||
|
||||
public static vNumber = "0.16.3";
|
||||
public static vNumber = "0.16.4";
|
||||
|
||||
public static ImgurApiKey = '7070e7167f0a25a'
|
||||
public static readonly mapillary_client_token_v4 = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85"
|
||||
|
|
|
@ -367,7 +367,7 @@ export default class LayerConfig extends WithContextLoader {
|
|||
extraProps.push(new Combine(["This layer will automatically load ", new Link(dep.neededLayer, "./" + dep.neededLayer + ".md"), " into the layout as it depends on it: ", dep.reason, "(" + dep.context + ")"]))
|
||||
}
|
||||
|
||||
for (const revDep of layerIsNeededBy?.get(this.id) ?? []) {
|
||||
for (const revDep of Utils.Dedup( layerIsNeededBy?.get(this.id) ?? [])) {
|
||||
extraProps.push(new Combine(["This layer is needed as dependency for layer", new Link(revDep, "#" + revDep)]))
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue