diff --git a/gpt4all-chat/qml/HomeView.qml b/gpt4all-chat/qml/HomeView.qml index b73d4a21..f9728f6f 100644 --- a/gpt4all-chat/qml/HomeView.qml +++ b/gpt4all-chat/qml/HomeView.qml @@ -189,6 +189,9 @@ Rectangle { Accessible.role: Accessible.Paragraph Accessible.name: qsTr("Latest news") Accessible.description: qsTr("Latest news from GPT4All") + onLinkActivated: function(link) { + Qt.openUrlExternally(link); + } } } }