mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix input prompt title for creating a new Quick Reply Set
This commit is contained in:
@ -346,7 +346,7 @@ export class SettingsUi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async addQrSet() {
|
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) {
|
if (name && name.length > 0) {
|
||||||
const oldQrs = QuickReplySet.get(name);
|
const oldQrs = QuickReplySet.get(name);
|
||||||
if (oldQrs) {
|
if (oldQrs) {
|
||||||
|
Reference in New Issue
Block a user