From a434d217ccd77b76060d71f08db40fcd89bf4bb0 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 16 Feb 2025 16:25:08 +0200 Subject: [PATCH] Fix input prompt title for creating a new Quick Reply Set --- public/scripts/extensions/quick-reply/src/ui/SettingsUi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/extensions/quick-reply/src/ui/SettingsUi.js b/public/scripts/extensions/quick-reply/src/ui/SettingsUi.js index df6bb081f..a4bff8d06 100644 --- a/public/scripts/extensions/quick-reply/src/ui/SettingsUi.js +++ b/public/scripts/extensions/quick-reply/src/ui/SettingsUi.js @@ -346,7 +346,7 @@ export class SettingsUi { } async addQrSet() { - const name = await Popup.show.input('Create a new World Info', 'Enter a name for the new Quick Reply Set:'); + const name = await Popup.show.input('Create a new Quick Reply Set', 'Enter a name for the new Quick Reply Set:'); if (name && name.length > 0) { const oldQrs = QuickReplySet.get(name); if (oldQrs) {