Fix faulty upload
This commit is contained in:
parent
c548c26158
commit
bee2878b76
3 changed files with 3 additions and 3 deletions
|
@ -126,7 +126,7 @@ export interface LayoutConfigJson {
|
||||||
/**
|
/**
|
||||||
* If defined, data will be clustered.
|
* If defined, data will be clustered.
|
||||||
*/
|
*/
|
||||||
clustering: {
|
clustering?: {
|
||||||
/**
|
/**
|
||||||
* All zoom levels above 'maxzoom' are not clustered anymore
|
* All zoom levels above 'maxzoom' are not clustered anymore
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -108,7 +108,7 @@ export class ChangesetHandler {
|
||||||
`<tag k="theme" v="${layout.id}"/>`,
|
`<tag k="theme" v="${layout.id}"/>`,
|
||||||
`<tag k="language" v="${Locale.language.data}"/>`,
|
`<tag k="language" v="${Locale.language.data}"/>`,
|
||||||
`<tag k="host" v="${escapeHtml(window.location.host)}"/>`,
|
`<tag k="host" v="${escapeHtml(window.location.host)}"/>`,
|
||||||
`<tag k="imagery" v="${State.state.backgroundLayer.data.id}/>`,
|
`<tag k="imagery" v="${State.state.backgroundLayer.data.id}"/>`,
|
||||||
surveySource,
|
surveySource,
|
||||||
(layout.maintainer ?? "") !== "" ? `<tag k="theme-creator" v="${escapeHtml(layout.maintainer)}"/>` : "",
|
(layout.maintainer ?? "") !== "" ? `<tag k="theme-creator" v="${escapeHtml(layout.maintainer)}"/>` : "",
|
||||||
`</changeset></osm>`].join("")
|
`</changeset></osm>`].join("")
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { Utils } from "../Utils";
|
import { Utils } from "../Utils";
|
||||||
|
|
||||||
export default class Constants {
|
export default class Constants {
|
||||||
public static vNumber = "0.2.7";
|
public static vNumber = "0.2.7-rc2";
|
||||||
|
|
||||||
// The user journey states thresholds when a new feature gets unlocked
|
// The user journey states thresholds when a new feature gets unlocked
|
||||||
public static userJourney = {
|
public static userJourney = {
|
||||||
|
|
Loading…
Reference in a new issue