diff --git a/webapp/static/js/collections.js b/webapp/static/js/collections.js index 689a1a119..222d5f7ac 100644 --- a/webapp/static/js/collections.js +++ b/webapp/static/js/collections.js @@ -673,44 +673,8 @@ } function buildTagsToolbarHtml() { - if (!TAGS_FEATURE_ENABLED) { - return ''; - } - const selectedTags = currentTagsFilter || []; - const filterLabel = selectedTags.length ? `סינון (${selectedTags.length})` : 'סינון תגיות'; - const sortOptions = [ - { value: 'default', label: 'מיון רגיל' }, - { value: 'priority', label: 'מיון לפי עדיפות' }, - { value: 'order', label: 'מיון לפי סדר' }, - ]; - const selectedTagsHtml = selectedTags.length - ? selectedTags.map(t => `${escapeHtml(t)}`).join('') - : ''; - - return ` -
-
- - - - - - - -
- -
- ${selectedTagsHtml} -
-
- `; + // Tags toolbar removed from My Collections view + return ''; } function setBulkMode(container, enabled) {