﻿"use strict";

app.filter("filterLabel", function () {
    return function (details) {
        if (details.labelNotInList) {
            return details.customLabel;
        }
        else {
            return details.label;
        }
    };
});