From 9a8b38517ca11c3fadc5fcdd1b40b351205a9866 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sat, 21 Sep 2024 23:30:31 +0300 Subject: [PATCH] Fix button label consistency --- public/scripts/preset-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/preset-manager.js b/public/scripts/preset-manager.js index 75c6effaf..29f44c747 100644 --- a/public/scripts/preset-manager.js +++ b/public/scripts/preset-manager.js @@ -241,7 +241,7 @@ class PresetManager { const html = $(await renderTemplateAsync('masterImport', { sections: sectionNames })); const popup = new Popup(html, POPUP_TYPE.CONFIRM, '', { - okButton: 'Confirm', + okButton: 'Import', cancelButton: 'Cancel', });