diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 8a2b1f6e..7c11ef18 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -1058,6 +1058,8 @@ export default { &__title { width: 100%; + overflow-x: auto; + white-space: nowrap; } &__remember { diff --git a/src/components/ChattyLLM/EditableTextField.vue b/src/components/ChattyLLM/EditableTextField.vue index 6db6cc12..3f46a79d 100644 --- a/src/components/ChattyLLM/EditableTextField.vue +++ b/src/components/ChattyLLM/EditableTextField.vue @@ -9,7 +9,8 @@ dir="auto" :text="text" :autolink="false" - :use-extended-markdown="true" /> + :use-extended-markdown="true" + :title="text" />