From 080430d453937ba4131d980c35a80531c0b0f00f Mon Sep 17 00:00:00 2001 From: ulf-f <18138421+ulf-f@users.noreply.github.com> Date: Fri, 22 Mar 2019 14:01:46 +0100 Subject: [PATCH] wrong width/height for tile_70 (mstile 70x70 (png)) I assume it is a c&p error in the tile_70 file the upload from the file always shows the error "Invalid file width" with a file which is 70x70 because the width and height was copied from the file below and still 144x144 instead of 70x70. --- app/assets/server/assets.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/server/assets.js b/app/assets/server/assets.js index a11bef444f65..7d7a6027942e 100644 --- a/app/assets/server/assets.js +++ b/app/assets/server/assets.js @@ -130,8 +130,8 @@ const assets = { constraints: { type: 'image', extensions: ['png'], - width: 144, - height: 144, + width: 70, + height: 70, }, }, tile_144: {