From 71504966c15db9b506b99a29d6b9cd52e311502b Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Tue, 17 Feb 2026 13:49:27 -0800 Subject: Soft deprecate tags feature in Settings --- frontend-vanilla/src/main.test.ts | 3 ++- frontend-vanilla/src/main.ts | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'frontend-vanilla') diff --git a/frontend-vanilla/src/main.test.ts b/frontend-vanilla/src/main.test.ts index 40acd83..7dddc3f 100644 --- a/frontend-vanilla/src/main.test.ts +++ b/frontend-vanilla/src/main.test.ts @@ -394,7 +394,8 @@ describe('main application logic', () => { const manageSection = document.querySelector('.manage-feeds-section'); expect(manageSection).not.toBeNull(); expect(manageSection?.innerHTML).toContain('My Feed'); - expect(document.querySelector('.feed-tag-input')).not.toBeNull(); + // Tag feature soft-deprecated + // expect(document.querySelector('.feed-tag-input')).not.toBeNull(); }); it('should navigate items with j/k keys', () => { diff --git a/frontend-vanilla/src/main.ts b/frontend-vanilla/src/main.ts index 418b9be..302c253 100644 --- a/frontend-vanilla/src/main.ts +++ b/frontend-vanilla/src/main.ts @@ -416,8 +416,10 @@ export function renderSettings() {
${feed.url}
+
@@ -494,6 +496,7 @@ export function renderSettings() { }); }); + /* Soft deprecated. document.querySelectorAll('.update-feed-tag-btn').forEach(btn => { btn.addEventListener('click', async (e) => { const id = parseInt((e.target as HTMLElement).getAttribute('data-id')!); @@ -505,6 +508,7 @@ export function renderSettings() { alert('Feed updated'); }); }); + */ } async function addFeed(url: string): Promise { -- cgit v1.2.3