Skip to content

Commit

Permalink
fix(ldapUserListFix): 优化ldap用户列表勾选后关闭页面,再次打开时,上一次选中的状态还存在的问题 (#192)
Browse files Browse the repository at this point in the history
* fix(ldapUserListFix): 优化ldap用户列表勾选后关闭页面,再次打开时,上一次选中的状态还存在的问题
  • Loading branch information
jym503558564 authored Jul 15, 2020
1 parent c597bc1 commit 4d86edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/settings/Ldap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<el-button type="primary" @click="testUerLoginClick">{{ $t('common.Confirm') }}</el-button>
</div>
</el-dialog>
<el-dialog :visible.sync="dialogLdapUserImport" center>
<el-dialog :visible.sync="dialogLdapUserImport" :destroy-on-close="true" center>
<div slot="title">
{{ $t('setting.importLdapUserTitle') }}
<el-alert type="success"> {{ $t('setting.importLdapUserTip') }}</el-alert>
Expand All @@ -60,7 +60,7 @@
@error="handlerListTableXHRError($event)"
/>
<div slot="footer">
<el-button @click="dialogLdapUserImport = false">{{ $t('common.Cancel') }}</el-button>
<el-button @click="dialogLdapUserImport=false">{{ $t('common.Cancel') }}</el-button>
<el-button type="primary" @click="importUserClick">{{ $t('common.Import') }}</el-button>
</div>
</el-dialog>
Expand Down

0 comments on commit 4d86edd

Please sign in to comment.