diff --git a/services/web/frontend/js/main/project-list/tag-controllers.js b/services/web/frontend/js/main/project-list/tag-controllers.js index f7b317e79e..c049a7b5a8 100644 --- a/services/web/frontend/js/main/project-list/tag-controllers.js +++ b/services/web/frontend/js/main/project-list/tag-controllers.js @@ -63,8 +63,9 @@ App.controller('TagListController', function($scope, $modal) { project.tags.splice(index, 1) } } - // Remove tag - $scope.tags = $scope.tags.filter(t => t !== tag) + + // Remove tag in place to update the state everywhere + $scope.tags.splice($scope.tags.indexOf(tag), 1) }) }