Commit 2fc06cc3 authored by Leopoldthecoder's avatar Leopoldthecoder

fix pagination select

parent ce3bed6c
......@@ -141,14 +141,14 @@ export default {
<span class="el-pagination__sizes">
<el-select
value={ this.$parent.internalPageSize }
on-change={ this.handleChange }>
on-input={ this.handleChange }>
{
this.pageSizes.map(item =>
<el-option
value={ item }
label={ item + ' ' + this.t('el.pagination.pagesize') }>
</el-option>
)
<el-option
value={ item }
label={ item + ' ' + this.t('el.pagination.pagesize') }>
</el-option>
)
}
</el-select>
</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