Browse Source

fix(nc-gui): stop event propagation on dblclicking downArrow of field header in grid view (#8297)

pull/8300/head
Ramesh Mane 3 months ago committed by GitHub
parent
commit
00515f5b86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nc-gui/components/smartsheet/header/Menu.vue

2
packages/nc-gui/components/smartsheet/header/Menu.vue

@ -306,7 +306,7 @@ const isDuplicateAllowed = computed(() => {
overlay-class-name="nc-dropdown-column-operations !border-1 rounded-lg !shadow-xl"
@click.stop="isOpen = !isOpen"
>
<div>
<div @dblclick.stop>
<GeneralIcon icon="arrowDown" class="text-grey h-full text-grey nc-ui-dt-dropdown cursor-pointer outline-0 mr-2" />
</div>
<template #overlay>

Loading…
Cancel
Save