mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Bugfix
This commit is contained in:
parent
7cff1d7690
commit
ad72b0063c
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ app = Sammy('#main', function (sam) {
|
|||
data2 = { 'Apps': [] }
|
||||
$.each(data['Apps'], function(k, v) {
|
||||
if (dataraw[v['ID']].manifest.multi_instance) v['Installed'] = false;
|
||||
if (!v['Installed']) data2['Apps'].push(v);
|
||||
if (!v['Installed'] && !v['ID'].match(/__[0-9]{1,5}$/)) data2['Apps'].push(v);
|
||||
});
|
||||
c.view('app_list', data2);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue