$scope.filterByType = function()

in src/main/resources/static/src/consumer.js [138:150]


    $scope.filterByType = function (str) {
        if ($scope.filterSystem) {
            if (str.startsWith("%S")) {
                return true
            }
        }
        if ($scope.filterNormal) {
            if (str.startsWith("%") == false) {
                return true
            }
        }
        return false;
    };