From 292a46106e760772f8e98f81aa89f152e5f278fb Mon Sep 17 00:00:00 2001 From: joan Date: Mon, 4 Jan 2021 15:08:52 +0100 Subject: [PATCH] Translation fix --- back/methods/image/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/methods/image/upload.js b/back/methods/image/upload.js index 649d13c680..a93ead6510 100644 --- a/back/methods/image/upload.js +++ b/back/methods/image/upload.js @@ -48,7 +48,7 @@ module.exports = Self => { throw new UserError(`You don't have enough privileges`); if (process.env.NODE_ENV == 'test') - throw new UserError(`You can't upload images on the test instance`); + throw new UserError(`You can't upload images on the test environment`); // Upload file to temporary path const tempContainer = await TempContainer.container(args.collection);