We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d2288 commit 203a546Copy full SHA for 203a546
ui/components/prompts/add-edit.vue
@@ -527,17 +527,11 @@ function autoResizeUserPrompt() {
527
});
528
}
529
530
-// Optionally, auto-resize on mount and when value changes
+// Auto-resize only on mount (when entering edit mode)
531
onMounted(() => {
532
autoResizeSystemPrompt();
533
autoResizeUserPrompt();
534
535
-watch(systemPrompt, () => {
536
- autoResizeSystemPrompt();
537
-});
538
-watch(userPrompt, () => {
539
- autoResizeUserPrompt();
540
541
542
543
// Computed property for validation errors
0 commit comments