We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e2eb1 commit 9eaecb6Copy full SHA for 9eaecb6
frontend/src/views/system/user/User.vue
@@ -243,7 +243,7 @@
243
</el-icon>
244
</span>
245
<div class="down-template-content" style="align-items: center">
246
- <span>{{ t('prompt.default_password', { msg: 'SQLBot@123456' }) }}</span>
+ <span>{{ t('prompt.default_password', { msg: defaultPwd }) }}</span>
247
<el-button style="margin-left: 4px" size="small" text @click="copyPassword">{{
248
t('datasource.copy')
249
}}</el-button>
@@ -535,7 +535,7 @@ const copyText = () => {
535
}
536
537
const copyPassword = () => {
538
- copy('SQLBot@123456')
+ copy(defaultPwd.value)
539
.then(function () {
540
ElMessage.success(t('embedded.copy_successful'))
541
})
0 commit comments