Browse Source

fix: Disabled column drag and drop for mobile mode

pull/6810/head
Muhammed Mustafa 1 year ago
parent
commit
6067deec33
  1. 2
      packages/nc-gui/components/smartsheet/grid/Table.vue

2
packages/nc-gui/components/smartsheet/grid/Table.vue

@ -1299,7 +1299,7 @@ const loaderText = computed(() => {
'width': gridViewCols[col.id]?.width || '200px',
}"
class="nc-grid-column-header relative"
draggable="true"
:draggable="isMobileMode ? 'false' : 'true'"
@click="selectColumn(col.id!)"
@xcresize="onresize(col.id, $event)"
@xcresizing="onXcResizing(col.id, $event)"

Loading…
Cancel
Save