()
| 14758 | |
| 14759 | // Add this function to populate the tag filter dropdown |
| 14760 | async function populateTagFilter() { |
| 14761 | const tagSelect = document.getElementById('tag-filter'); // Changed from 'tag-filter-select' |
| 14762 | if (!tagSelect) { |
| 14763 | console.error('Tag filter select element not found'); |
| 14764 | return; |
| 14765 | } |
| 14766 | |
| 14767 | tagSelect.innerHTML = '<option value="">All Tags</option>'; |
| 14768 | |
| 14769 | try { |
no outgoing calls
no test coverage detected