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'), diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 8a2b1f6eb..7c11ef189 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 6db6cc127..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" />