From e561355e8dee551f13d6f2aa71316706b2b4cf2c Mon Sep 17 00:00:00 2001 From: Kayou Date: Wed, 13 May 2020 12:17:04 +0200 Subject: [PATCH] [Fix] install button in case of multi instance capability --- src/js/yunohost/controllers/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/yunohost/controllers/apps.js b/src/js/yunohost/controllers/apps.js index 1ddd51b1..ddb4193e 100644 --- a/src/js/yunohost/controllers/apps.js +++ b/src/js/yunohost/controllers/apps.js @@ -154,7 +154,7 @@ app.manifest.maintainer = extractMaintainer(app.manifest); var isWorking = (app.state === 'working' || app.state === "high-quality") && app.level > 0; - app.installable = (!app.installed || app.manifest.supports_multi_instance) + app.installable = (!app.installed || app.manifest.multi_instance) app.levelFormatted = isNaN(app.level) ? '?' : app.level; app.levelColor = levelToColor(app.level);