From a0720343f37ea29f00418c355823ccc2f9951230 Mon Sep 17 00:00:00 2001 From: LenAnderson Date: Mon, 15 Jul 2024 18:16:32 -0400 Subject: [PATCH] use POPUP_TYPE text for fontawesome popup --- public/scripts/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/utils.js b/public/scripts/utils.js index 668e8b0f0..68a0f2028 100644 --- a/public/scripts/utils.js +++ b/public/scripts/utils.js @@ -1956,7 +1956,7 @@ export async function showFontAwesomePicker() { } } let value; - const picker = new Popup(dom, POPUP_TYPE.CONFIRM, null, { allowVerticalScrolling:true }); + const picker = new Popup(dom, POPUP_TYPE.TEXT, null, { allowVerticalScrolling:true, okButton: 'Cancel' }); await picker.show(); if (picker.result == POPUP_RESULT.AFFIRMATIVE) { return value;