Commit c5347b80 authored by Jikkai Xiao's avatar Jikkai Xiao Committed by hetech

Table: fix async filters (#12165)

parent 363a8bdc
...@@ -124,7 +124,7 @@ export default { ...@@ -124,7 +124,7 @@ export default {
: '' : ''
} }
{ {
column.filterable (column.filters && column.filters.length) || column.filterMethod
? <span class="el-table__column-filter-trigger" on-click={ ($event) => this.handleFilterClick($event, column) }><i class={ ['el-icon-arrow-down', column.filterOpened ? 'el-icon-arrow-up' : ''] }></i></span> ? <span class="el-table__column-filter-trigger" on-click={ ($event) => this.handleFilterClick($event, column) }><i class={ ['el-icon-arrow-down', column.filterOpened ? 'el-icon-arrow-up' : ''] }></i></span>
: '' : ''
} }
......
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