$scope.filterByType = function()

in src/main/resources/static/src/consumer.js [199:219]


    $scope.filterByType = function (str, type,version) {
        if ($scope.filterSystem) {
            if (type === "SYSTEM") {
                return true
            }
        }
        if ($scope.filterNormal) {
            if (type === "NORMAL") {
                return true
            }
            if(!version && type === "FIFO"){
                return true;
            }
        }
        if ($scope.filterFIFO) {
            if (type === "FIFO") {
                return true;
            }
        }
        return false;
    };