Use statusId instead of repliedUser.id

This commit is contained in:
Sean King 2022-06-11 16:32:46 -06:00 committed by Sol Fisher Romanoff
parent e6c1bd3d72
commit 2dfef8acea
Signed by untrusted user who does not match committer: nbsp
GPG Key ID: 9D3F2B64F2341B62
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ const EditStatusModal = {
}, },
watch: { watch: {
params (newVal, oldVal) { params (newVal, oldVal) {
if (get(newVal, 'repliedUser.id') !== get(oldVal, 'repliedUser.id')) { if (get(newVal, 'statusId') !== get(oldVal, 'statusId')) {
this.resettingForm = true this.resettingForm = true
this.$nextTick(() => { this.$nextTick(() => {
this.resettingForm = false this.resettingForm = false