Skip to content

Commit

Permalink
Fixes warning and error in EditEventDialog.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
mvilanova committed Nov 9, 2023
1 parent 5f7a45d commit 2d1830d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dispatch/static/dispatch/src/incident/EditEventDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
v-model="started_at"
class="time-picker"
:timezone="timezone"
@update:modelValue="update_started_at"
@update:model-value="update_started_at"
/>
<span
class="ml-10 time-utc text-caption"
Expand Down Expand Up @@ -114,7 +114,7 @@ export default {
update_started_at(val) {
this.started_at = val
this.started_at_in_utc = val
}
},
},
mounted() {
this.init()
Expand Down

0 comments on commit 2d1830d

Please sign in to comment.