Skip to content

Commit

Permalink
feat(editor): Make highlighted data pane floating (#10638)
Browse files Browse the repository at this point in the history
Co-authored-by: oleg <[email protected]>
  • Loading branch information
2 people authored and riascho committed Sep 23, 2024
1 parent d96c120 commit 18e247b
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 199 deletions.
4 changes: 2 additions & 2 deletions packages/editor-ui/src/components/TagsDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ onClickOutside(
() => {
emit('blur');
},
{ ignore: [`.tags-dropdown-${dropdownId}`, '#tags-manager-modal'] },
{ ignore: [`.tags-dropdown-${dropdownId}`, '#tags-manager-modal'], detectIframe: true },
);
</script>

Expand All @@ -199,7 +199,7 @@ onClickOutside(
multiple
:reserve-keyword="false"
loading-text="..."
:popper-class="['tags-dropdown', 'tags-dropdown-' + dropdownId]"
:popper-class="['tags-dropdown', 'tags-dropdown-' + dropdownId].join(' ')"
data-test-id="tags-dropdown"
@update:model-value="onTagsUpdated"
@visible-change="onVisibleChange"
Expand Down
Loading

0 comments on commit 18e247b

Please sign in to comment.