Commit 6105a755 authored by hetech's avatar hetech Committed by luckyCao

Table: prevent click handler after drag (#16850)

parent 744bad1f
......@@ -298,6 +298,7 @@ export default {
event.stopPropagation();
const target = event.target;
let cell = target.tagName === 'TH' ? target : target.parentNode;
if (hasClass(cell, 'noclick')) return;
cell = cell.querySelector('.el-table__column-filter-trigger') || cell;
const table = this.$parent;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment