Fix input prompt title for creating a new Quick Reply Set

This commit is contained in:
Cohee
2025-02-16 16:25:08 +02:00
parent 1723ce0f22
commit a434d217cc

View File

@ -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) {