Fix main prompt clearing on disabling
This commit is contained in:
parent
b06e09c030
commit
bbdbb08301
|
@ -1286,7 +1286,7 @@ class PromptManager {
|
||||||
} else if (!entry.enabled && entry.identifier === 'main') {
|
} else if (!entry.enabled && entry.identifier === 'main') {
|
||||||
// Some extensions require main prompt to be present for relative inserts.
|
// Some extensions require main prompt to be present for relative inserts.
|
||||||
// So we make a GMO-free vegan replacement.
|
// So we make a GMO-free vegan replacement.
|
||||||
const prompt = this.getPromptById(entry.identifier);
|
const prompt = structuredClone(this.getPromptById(entry.identifier));
|
||||||
prompt.content = '';
|
prompt.content = '';
|
||||||
if (prompt) promptCollection.add(this.preparePrompt(prompt));
|
if (prompt) promptCollection.add(this.preparePrompt(prompt));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue