From 7fef10abd330607ca89e5dbb0e6ec7f82458439c Mon Sep 17 00:00:00 2001 From: Paulo Porto Date: Thu, 3 Sep 2026 17:59:41 -0300 Subject: [PATCH] Bug fix for restoring the Search Opportunities input --- dist/chromium/content.js | 1 + dist/firefox/content.js | 1 + src/content.js | 1 + 3 files changed, 3 insertions(+) diff --git a/dist/chromium/content.js b/dist/chromium/content.js index fbcbb62..aa8b46f 100644 --- a/dist/chromium/content.js +++ b/dist/chromium/content.js @@ -443,6 +443,7 @@ tableSearchInput.type = "search"; tableSearchInput.placeholder = "Search opportunities"; tableSearchInput.setAttribute("aria-label", "Search opportunities"); + tableSearchInput.value = tableSearch; tableSearchInput.addEventListener("input", () => { tableSearch = tableSearchInput.value; saveFilterPreferences(); diff --git a/dist/firefox/content.js b/dist/firefox/content.js index fbcbb62..aa8b46f 100644 --- a/dist/firefox/content.js +++ b/dist/firefox/content.js @@ -443,6 +443,7 @@ tableSearchInput.type = "search"; tableSearchInput.placeholder = "Search opportunities"; tableSearchInput.setAttribute("aria-label", "Search opportunities"); + tableSearchInput.value = tableSearch; tableSearchInput.addEventListener("input", () => { tableSearch = tableSearchInput.value; saveFilterPreferences(); diff --git a/src/content.js b/src/content.js index fbcbb62..aa8b46f 100644 --- a/src/content.js +++ b/src/content.js @@ -443,6 +443,7 @@ tableSearchInput.type = "search"; tableSearchInput.placeholder = "Search opportunities"; tableSearchInput.setAttribute("aria-label", "Search opportunities"); + tableSearchInput.value = tableSearch; tableSearchInput.addEventListener("input", () => { tableSearch = tableSearchInput.value; saveFilterPreferences();