Skip to content

Commit

Permalink
Table: fix async filters (#12165)
Browse files Browse the repository at this point in the history
  • Loading branch information
jikkai authored and ziyoung committed Aug 2, 2018
1 parent 363a8bd commit c5347b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/table/src/table-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>
: ''
}
Expand Down

0 comments on commit c5347b8

Please sign in to comment.