From 3b66bce24d607e36f2f81893d805a2e32701c81d Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Mon, 3 May 2021 17:47:58 +0200 Subject: [PATCH] Fix bug in generation of the main manifest file --- scripts/generateLayouts.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/generateLayouts.ts b/scripts/generateLayouts.ts index 86540c21c..1a3539bd6 100644 --- a/scripts/generateLayouts.ts +++ b/scripts/generateLayouts.ts @@ -212,9 +212,9 @@ createManifest(new LayoutConfig({ startLat: 0, startLon: 0, startZoom: 0, - title: "MapComplete", + title: {en:"MapComplete"}, version: Constants.vNumber, - description: "MapComplete as a map viewer and editor which show thematic POI based on OpenStreetMap" + description: {en:"A thematic map viewer and editor based on OpenStreetMap"} }), "").then(manifObj => { const manif = JSON.stringify(manifObj, undefined, 2); writeFileSync("index.manifest", manif)