Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kubernetes-label-selector",
"version": "1.0.0",
"version": "1.0.1",
"description": "Provides a LabelSelector object that understand kubernetes labels and label selector syntax, and works directly with JSON API objects from kubernetes. Also provides a label filtering widget.",
"moduleType": [
"globals"
Expand Down
4 changes: 3 additions & 1 deletion labelFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ angular.module('kubernetesUI')
)
).click(function() {
$(this).hide();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nicely done! 😄

self._labelFilterActiveFiltersElement.empty();
self._labelFilterActiveFiltersElement
.find('.label-filter-active-filter')
.remove();
self._clearActiveFilters();
});

Expand Down