mirror of
https://github.com/veops/cmdb.git
synced 2025-08-09 22:38:53 +08:00
fix(cmdb-ui): CI update password
This commit is contained in:
@@ -526,7 +526,7 @@ export default {
|
||||
const $table = this.$refs['xTable'].getVxetableRef()
|
||||
const data = {}
|
||||
this.columns.forEach((item) => {
|
||||
if (!_.isEqual(row[item.field], this.initialInstanceList[rowIndex][item.field])) {
|
||||
if (!(item.field in this.initialPasswordValue) && !_.isEqual(row[item.field], this.initialInstanceList[rowIndex][item.field])) {
|
||||
data[item.field] = row[item.field] ?? null
|
||||
}
|
||||
})
|
||||
|
@@ -1130,7 +1130,7 @@ export default {
|
||||
const $table = this.$refs['xTable']
|
||||
const data = {}
|
||||
this.columns.forEach((item) => {
|
||||
if (!_.isEqual(row[item.field], this.initialInstanceList[rowIndex][item.field])) {
|
||||
if (!(item.field in this.initialPasswordValue) && !_.isEqual(row[item.field], this.initialInstanceList[rowIndex][item.field])) {
|
||||
data[item.field] = row[item.field] ?? null
|
||||
}
|
||||
})
|
||||
|
@@ -972,7 +972,7 @@ export default {
|
||||
const $table = this.$refs['xTable'].getVxetableRef()
|
||||
const data = {}
|
||||
this.columns.forEach((item) => {
|
||||
if (!_.isEqual(row[item.field], this.initialInstanceList[rowIndex][item.field])) {
|
||||
if (!(item.field in this.initialPasswordValue) && !_.isEqual(row[item.field], this.initialInstanceList[rowIndex][item.field])) {
|
||||
data[item.field] = row[item.field] ?? null
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user