Merge branch 'dev-3.6' of git.mesalab.cn:nezha/nezha-fronted into dev-3.7

This commit is contained in:
zyh
2023-06-21 14:05:51 +08:00
2 changed files with 1 additions and 4 deletions

View File

@@ -699,9 +699,6 @@ i.nz-icon-override{
.el-dialog__header{ .el-dialog__header{
position: relative; position: relative;
} }
.el-message__content{
white-space:pre-line
}
.response__popper { .response__popper {
max-height: 500px; max-height: 500px;
overflow: hidden; overflow: hidden;

View File

@@ -238,7 +238,7 @@ export default {
this.object = { ...u, name: u.name + copyName, id: '' } this.object = { ...u, name: u.name + copyName, id: '' }
if (this.object.name.length > 64) { if (this.object.name.length > 64) {
const length = this.object.name.length - 64 const length = this.object.name.length - 64
this.object.name = u.name.substring(0, u.name.length - length) + '-copy' this.object.name = u.name.substring(0, u.name.length - length) + copyName
} }
this.rightBox.show = true this.rightBox.show = true
}, },