From 82a4e8d03e00561fdf445085151a78eb61ae74cb Mon Sep 17 00:00:00 2001 From: Jana Peper Date: Wed, 6 May 2026 17:24:19 +0200 Subject: [PATCH 1/5] fix: title height Signed-off-by: Jana Peper --- src/components/ChattyLLM/ChattyLLMInputForm.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 8a2b1f6eb..6d2e5bd74 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -1058,6 +1058,8 @@ export default { &__title { width: 100%; + height: var(--header-height); + overflow: scroll; } &__remember { From 37a17802f8a90f2ddca3d438582cf666a4737651 Mon Sep 17 00:00:00 2001 From: Jana Peper Date: Wed, 6 May 2026 17:47:29 +0200 Subject: [PATCH 2/5] fix: alignment Signed-off-by: Jana Peper --- src/components/ChattyLLM/ChattyLLMInputForm.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 6d2e5bd74..63676e803 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -1058,8 +1058,9 @@ export default { &__title { width: 100%; - height: var(--header-height); + height: calc(var(--default-clickable-area) + var(--default-grid-baseline) * 2); overflow: scroll; + align-content: center; } &__remember { From 841fa0026f44292ac281f2878854eae703d8a2bb Mon Sep 17 00:00:00 2001 From: Jana Peper Date: Wed, 6 May 2026 18:24:13 +0200 Subject: [PATCH 3/5] feat: change scrolling to horizontal Signed-off-by: Jana Peper --- src/components/ChattyLLM/ChattyLLMInputForm.vue | 5 ++--- src/components/ChattyLLM/EditableTextField.vue | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 63676e803..7360768f6 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -1058,9 +1058,8 @@ export default { &__title { width: 100%; - height: calc(var(--default-clickable-area) + var(--default-grid-baseline) * 2); - overflow: scroll; - align-content: center; + overflow-x: scroll; + white-space: nowrap; } &__remember { diff --git a/src/components/ChattyLLM/EditableTextField.vue b/src/components/ChattyLLM/EditableTextField.vue index 6db6cc127..5a8d78c9a 100644 --- a/src/components/ChattyLLM/EditableTextField.vue +++ b/src/components/ChattyLLM/EditableTextField.vue @@ -162,7 +162,7 @@ export default { .editable-text-field { display: flex; //width: 100%; - overflow: hidden; + overflow: auto; position: relative; min-height: var(--default-clickable-area); align-items: center; From d3e21c27dc27efcd36608dc70b07360cc52f89c6 Mon Sep 17 00:00:00 2001 From: Jana Peper Date: Thu, 7 May 2026 09:39:05 +0200 Subject: [PATCH 4/5] feat: add strings for new mail tools Signed-off-by: Jana Peper --- lib/Service/AssistantService.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Service/AssistantService.php b/lib/Service/AssistantService.php index 9c18c7635..87d06792e 100644 --- a/lib/Service/AssistantService.php +++ b/lib/Service/AssistantService.php @@ -127,7 +127,6 @@ public function __construct( 'get_folder_tree' => $this->l10n->t('Nextcloud Files'), 'get_form_details' => $this->l10n->t('Get form details'), 'get_form_responses' => $this->l10n->t('Get form responses'), - 'get_mail_account_list' => $this->l10n->t('Nextcloud Mail'), 'get_osm_link' => $this->l10n->t('OpenStreetMap'), 'get_osm_route' => $this->l10n->t('OpenStreetMap'), 'get_public_transport_route_for_coordinates' => $this->l10n->t('HERE Public transport API'), @@ -151,6 +150,9 @@ public function __construct( 'schedule_event' => $this->l10n->t('Nextcloud Calendar'), 'search_bookmarks' => $this->l10n->t('Search bookmarks'), 'send_email' => $this->l10n->t('Nextcloud Mail'), + 'get_mail_account_list' => $this->l10n->t('Nextcloud Mail'), + 'get_mail_folder_list' => $this->l10n->t('Nextcloud Mail'), + 'list_mails' => $this->l10n->t('Nextcloud Mail'), 'send_message_to_conversation' => $this->l10n->t('Nextcloud Talk'), 'share_with_circle' => $this->l10n->t('Nextcloud Teams'), 'share_with_group' => $this->l10n->t('Share with group'), From 19969ecb34e1e3557b38dc092cd90e524046fda7 Mon Sep 17 00:00:00 2001 From: Jana Peper Date: Thu, 7 May 2026 10:11:30 +0200 Subject: [PATCH 5/5] feat: ellipsis overflow and html title Signed-off-by: Jana Peper --- src/components/ChattyLLM/ChattyLLMInputForm.vue | 2 +- src/components/ChattyLLM/EditableTextField.vue | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 7360768f6..7c11ef189 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -1058,7 +1058,7 @@ export default { &__title { width: 100%; - overflow-x: scroll; + overflow-x: auto; white-space: nowrap; } diff --git a/src/components/ChattyLLM/EditableTextField.vue b/src/components/ChattyLLM/EditableTextField.vue index 5a8d78c9a..3f46a79df 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" />