From bddb5021d45b68b8895e4611e67ba8f89a6f4788 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 11 Dec 2018 01:40:11 +0000 Subject: [PATCH] Apps with level >= 3 should be good quality ? --- src/js/yunohost/controllers/apps.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/yunohost/controllers/apps.js b/src/js/yunohost/controllers/apps.js index 397901be..32536595 100644 --- a/src/js/yunohost/controllers/apps.js +++ b/src/js/yunohost/controllers/apps.js @@ -18,10 +18,10 @@ }); function levelToColor(level) { - if (level > 6) { + if (level >= 3) { return 'success'; } - else if (level >= 2) { + else if (level >= 1) { return 'warning'; } else if (isNaN(level)) {