From c25dc5193530cd9848a1cce493653543f901d6ef Mon Sep 17 00:00:00 2001 From: cebtenzzre Date: Sat, 21 Oct 2023 20:15:50 -0400 Subject: [PATCH] chat: fix syntax error in main.qml --- gpt4all-chat/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index e2d85a74..898c388d 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -282,8 +282,8 @@ Window { highlighted: comboBox.highlightedIndex === index } Accessible.role: Accessible.ComboBox - Accessible.name: qsTr(List of available models"") - Accessible.description: qsTr(" The top item is the current model") + Accessible.name: qsTr("List of available models") + Accessible.description: qsTr("The top item is the current model") onActivated: function (index) { currentChat.stopGenerating() currentChat.reset();