Skip to content

Commit

Permalink
fix relation role dropdown not working
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Jan 3, 2025
1 parent 28183c7 commit a6fbf69
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/ui/combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ export function uiCombobox(context, klass) {
if (input.classed('disabled')) return;
_tDown = +new Date();

// mousedown should never bubble up (see #10481)
d3_event.stopPropagation();

// clear selection
var start = input.property('selectionStart');
var end = input.property('selectionEnd');
Expand Down

0 comments on commit a6fbf69

Please sign in to comment.