Skip to content

Commit

Permalink
Fix parameter injection warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn authored and github-actions[bot] committed Jun 26, 2024
1 parent a27aea4 commit bcfc79f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qml/RelationCombobox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@ Item {
MouseArea {
enabled: !useCompleter
anchors.fill: parent
onClicked: {

onClicked: (mouse) => {
mouse.accepted = true
searchFeaturePopup.open()
}
Expand Down

0 comments on commit bcfc79f

Please sign in to comment.