From 2e44beb3e7c9ac125d254e241c38815755cafa34 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Fri, 6 Sep 2024 19:50:07 +0200 Subject: [PATCH] Triple dot to ellipsis Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- src/components/ChattyLLM/InputArea.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ChattyLLM/InputArea.vue b/src/components/ChattyLLM/InputArea.vue index 2b176440..64d73797 100644 --- a/src/components/ChattyLLM/InputArea.vue +++ b/src/components/ChattyLLM/InputArea.vue @@ -77,8 +77,8 @@ export default { data: () => { return { - placeholderText: t('assistant', 'Type a message...'), - thinkingText: t('assistant', 'Thinking...'), + placeholderText: t('assistant', 'Type a messageā€¦'), + thinkingText: t('assistant', 'Thinkingā€¦'), submitBtnAriaText: t('assistant', 'Submit'), } },