Table: fix async filters (#12165)

pull/12237/head
Jikkai Xiao 2018-08-02 19:27:07 +08:00 committed by hetech
parent 363a8bdcb1
commit c5347b8064
1 changed files with 1 additions and 1 deletions

View File

@ -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>
: ''
}