Use statusId instead of repliedUser.id

This commit is contained in:
Sean King 2022-06-11 16:32:46 -06:00 committed by FloatingGhost
parent 356bb5d05c
commit 587dc9893d
1 changed files with 1 additions and 1 deletions

View File

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