diff options
| author | Sean King <seanking2919@protonmail.com> | 2022-06-11 16:32:46 -0600 |
|---|---|---|
| committer | Sean King <seanking2919@protonmail.com> | 2022-06-11 16:32:46 -0600 |
| commit | 80ec88beabefd41e75040dd35364a94783e423a0 (patch) | |
| tree | 32dffdbf1b8d12b00b382b964ffd331c735d3194 /src | |
| parent | 15005a2a50aafb2f68bb48ff35eebf498654f028 (diff) | |
Use statusId instead of repliedUser.id
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/edit_status_modal/edit_status_modal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/edit_status_modal/edit_status_modal.js b/src/components/edit_status_modal/edit_status_modal.js index 14320d21..75adfea7 100644 --- a/src/components/edit_status_modal/edit_status_modal.js +++ b/src/components/edit_status_modal/edit_status_modal.js @@ -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 |
