From 975c58887b3538169a12411347e45eede34a8f62 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 21 Oct 2022 22:33:57 -0500 Subject: [PATCH] fixed issue causing preventing custom search from working --- src/utils/config/widget-helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/config/widget-helpers.js b/src/utils/config/widget-helpers.js index c9bdd0fb..6020e08a 100644 --- a/src/utils/config/widget-helpers.js +++ b/src/utils/config/widget-helpers.js @@ -29,7 +29,7 @@ export async function cleanWidgetGroups(widgets) { return widgets.map((widget, index) => { const sanitizedOptions = widget.options; const optionKeys = Object.keys(sanitizedOptions); - ["url", "username", "password", "key"].forEach((pO) => { + ["username", "password", "key"].forEach((pO) => { if (optionKeys.includes(pO)) { delete sanitizedOptions[pO]; }