Skip to content

Commit

Permalink
Fix parameter injection warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jun 27, 2024
1 parent 0b3017f commit f383274
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

1 comment on commit f383274

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.