From 8790586e57706a021ad929e31e4861a392761761 Mon Sep 17 00:00:00 2001 From: AT Date: Fri, 24 Jan 2025 10:29:28 -0500 Subject: [PATCH] Server view fix (#3411) Signed-off-by: Adam Treat --- gpt4all-chat/CHANGELOG.md | 1 + gpt4all-chat/qml/ChatView.qml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gpt4all-chat/CHANGELOG.md b/gpt4all-chat/CHANGELOG.md index 5f530a290a29..5ee90c2a391f 100644 --- a/gpt4all-chat/CHANGELOG.md +++ b/gpt4all-chat/CHANGELOG.md @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ### Fixed - Fix regression while using localdocs with server API ([#3410](https://github.com/nomic-ai/gpt4all/pull/3410)) +- Don't show system messages in server chat view ([#3411](https://github.com/nomic-ai/gpt4all/pull/3411)) ## [3.7.0] - 2025-01-21 diff --git a/gpt4all-chat/qml/ChatView.qml b/gpt4all-chat/qml/ChatView.qml index dfeeb18c2f29..12f6adad1bdf 100644 --- a/gpt4all-chat/qml/ChatView.qml +++ b/gpt4all-chat/qml/ChatView.qml @@ -828,7 +828,7 @@ Rectangle { textInput.cursorPosition = text.length; } height: visible ? implicitHeight : 0 - visible: name !== "ToolResponse: " + visible: name !== "ToolResponse: " && name !== "System: " } remove: Transition {