Themes: enable download functionality by default

This commit is contained in:
Pieter Vander Vennet 2023-04-25 02:37:23 +02:00
parent 94635337e6
commit 5504d49d59
2 changed files with 4 additions and 4 deletions

View file

@ -195,8 +195,8 @@ export default class LayoutConfig implements LayoutInformation {
this.enableAddNewPoints = json.enableAddNewPoints ?? true
this.enableBackgroundLayerSelection = json.enableBackgroundLayerSelection ?? true
this.enableShowAllQuestions = json.enableShowAllQuestions ?? false
this.enableExportButton = json.enableDownload ?? false
this.enablePdfDownload = json.enablePdfDownload ?? false
this.enableExportButton = json.enableDownload ?? true
this.enablePdfDownload = json.enablePdfDownload ?? true
this.customCss = json.customCss
this.overpassUrl = Constants.defaultOverpassUrls
if (json.overpassUrl !== undefined) {