mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #300 from YunoHost/fix-install-button
[Fix] install button in case of multi instance capability
This commit is contained in:
commit
a43283e9fc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue