Fix etymology theme

This commit is contained in:
Pieter Vander Vennet 2021-11-15 14:31:21 +01:00
parent 3570cfbaa8
commit eae05b21c6
8 changed files with 284 additions and 320 deletions

View file

@ -2,9 +2,8 @@ import {Utils} from "../Utils";
export default class Constants {
public static vNumber = "0.12.7";
public static vNumber = "0.12.8";
public static ImgurApiKey = '7070e7167f0a25a'
public static readonly mapillary_client_token_v3 = 'TXhLaWthQ1d4RUg0czVxaTVoRjFJZzowNDczNjUzNmIyNTQyYzI2'
public static readonly mapillary_client_token_v4 = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85"
public static defaultOverpassUrls = [

View file

@ -71,6 +71,11 @@ export default class WithContextLoader {
}
for (let i = 0; i < tagRenderings.length; i++) {
let renderingJson = tagRenderings[i]
if(renderingJson === "questions"){
renderingJson = {
id: "questions"
}
}
if (typeof renderingJson === "string") {
renderingJson = {builtin: renderingJson, override: undefined}
}