Fix pontential issue with system fields updating in inline editing

This commit is contained in:
Jože Fortun
2024-02-12 14:01:09 +01:00
parent 373cf7d6c2
commit a966b02cb3
+2 -2
View File
@@ -306,8 +306,8 @@ export default {
const values = []
this.fields.forEach(f => {
const { name, isMulti } = this.getField(f)
const value = this.record.values[name] || this.record[name]
const { name, isMulti, isSystem } = this.getField(f)
const value = isSystem ? this.record[name] : this.record.values[name]
if (!isMulti) {
values.push({ name, value: value ? value.toString() : value })