Skip to content
Snippets Groups Projects
Commit bca639f7 authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Fix input behaviour after updating element-ui

parent a4b1bc1a
Branches
Tags
1 merge request!11Add ability to read reports
......@@ -3,7 +3,7 @@
<h1>{{ $t('users.users') }}</h1>
<div class="search-container">
<users-filter/>
<el-input :placeholder="$t('users.search')" class="search" @input="handleDebounceSearchInput"/>
<el-input :placeholder="$t('users.search')" v-model="search" class="search" @input="handleDebounceSearchInput"/>
</div>
<el-table v-loading="loading" :data="users" style="width: 100%">
<el-table-column :min-width="width" :label="$t('users.id')" prop="id" />
......@@ -124,6 +124,11 @@ export default {
components: {
UsersFilter
},
data() {
return {
search: ''
}
},
computed: {
loading() {
return this.$store.state.users.loading
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment