diff --git a/web/assets/js/util/common.js b/web/assets/js/util/common.js index f411148b..34c3cf56 100644 --- a/web/assets/js/util/common.js +++ b/web/assets/js/util/common.js @@ -108,9 +108,9 @@ function usageColor(data, threshold, total) { function areAllItemsExist(array1, array2) { for (let i = 0; i < array1.length; i++) { - if (!array2.includes(array1[i])) { - return false; - } + if (!array2.includes(array1[i])) { + return false; + } } return true; - } \ No newline at end of file +}