fix: 🐛 don't change cell id when setProp

This commit is contained in:
vector
2021-04-19 23:05:22 +08:00
parent b6e88de309
commit ffbb924b7d

View File

@ -255,7 +255,7 @@ export class Cell<
if (typeof key === 'string') {
this.store.set(key, value, options)
} else {
const props = this.preprocess(key)
const props = this.preprocess(key, true)
this.store.set(ObjectExt.merge({}, this.getProp(), props), value)
this.postprocess(key)
}