Fix input prompt title for creating a new Quick Reply Set
| @@ -346,7 +346,7 @@ export class SettingsUi { | |||
| 346 | } | 346 | } |
| 347 | 347 | ||
| 348 | async addQrSet() { | 348 | async addQrSet() { |
| 349 | const name = await Popup.show.input('Create a new World Info', 'Enter a name for the new Quick Reply Set:'); | 349 | const name = await Popup.show.input('Create a new Quick Reply Set', 'Enter a name for the new Quick Reply Set:'); |
| 350 | if (name && name.length > 0) { | 350 | if (name && name.length > 0) { |
| 351 | const oldQrs = QuickReplySet.get(name); | 351 | const oldQrs = QuickReplySet.get(name); |
| 352 | if (oldQrs) { | 352 | if (oldQrs) { |