Fix party sheet rerenders from member updates interfering with currency and note input (#1809)

This commit is contained in:
Carlos Fernandez 2026-04-16 04:23:55 -04:00 committed by GitHub
parent 16c07d23bb
commit d9b322406d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -113,7 +113,7 @@ export default class DhpActor extends Actor {
_onUpdate(changes, options, userId) { _onUpdate(changes, options, userId) {
super._onUpdate(changes, options, userId); super._onUpdate(changes, options, userId);
for (const party of this.parties) { for (const party of this.parties) {
party.render(); party.render({ parts: ['partyMembers'] });
} }
} }
@ -132,7 +132,7 @@ export default class DhpActor extends Actor {
_onDelete(options, userId) { _onDelete(options, userId) {
super._onDelete(options, userId); super._onDelete(options, userId);
for (const party of this.parties) { for (const party of this.parties) {
party.render(); party.render({ parts: ['partyMembers'] });
} }
} }