Fix missing argument signal in qml

This commit is contained in:
Laurent Montel
2023-09-02 11:50:07 +02:00
committed by Tobias Fella
parent 23178b6224
commit dfba655527
3 changed files with 3 additions and 3 deletions

View File

@@ -82,6 +82,6 @@ ColumnLayout {
readonly property var replaceLinks: /(http[s]?:\/\/[^ \r\n]*)/g
textFormat: TextEdit.MarkdownText
wrapMode: Text.Wrap
onLinkActivated: UrlHelper.openUrl(link)
onLinkActivated: link => UrlHelper.openUrl(link)
}
}