diff --git a/static/directives/label-view.html b/static/directives/label-view.html index 47794122f..6ddb65868 100644 --- a/static/directives/label-view.html +++ b/static/directives/label-view.html @@ -1,12 +1,12 @@ - + {{ getKind(label) }} {{ label.key }} = {{ label.value }} - + {{ label.value }} - \ No newline at end of file + diff --git a/static/js/directives/ui/label-view.js b/static/js/directives/ui/label-view.js index 466c51639..fd00d021c 100644 --- a/static/js/directives/ui/label-view.js +++ b/static/js/directives/ui/label-view.js @@ -24,13 +24,6 @@ angular.module('quay').directive('labelView', function () { return value && value.indexOf('https:') == 0; }; - $scope.viewLabelValue = function() { - bootbox.alert({ - size: "small", - title: $scope.label.key, - message: '
' + $sanitize($scope.label.value.replace('<', '<').replace('>', '>')) + ''
- });
- };
}
};
});