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 ad21855ea1..4e666bd571 100644 --- a/services/web/frontend/js/main/project-list/tag-controllers.js +++ b/services/web/frontend/js/main/project-list/tag-controllers.js @@ -31,7 +31,7 @@ define(['base', 'ide/colors/ColorManager'], function(App, ColorManager) { if (!project) return acc // Ignore archived projects as they are not shown in the filter - if (!project.archived) { + if (!(project.archived || project.trashed)) { return acc + 1 } else { return acc