fixed race contidion on ticket view loading
This commit is contained in:
parent
0f8462dc7c
commit
b9cfdf5456
1 changed files with 5 additions and 13 deletions
|
@ -79,16 +79,6 @@ export default {
|
||||||
shipping_voucher_type: null,
|
shipping_voucher_type: null,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
|
||||||
ticket(val) {
|
|
||||||
if (this.selected_state == null) {
|
|
||||||
this.selected_state = val.state;
|
|
||||||
}
|
|
||||||
if (this.selected_assignee == null) {
|
|
||||||
this.selected_assignee = val.assigned_to
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['tickets', 'state_options', 'users']),
|
...mapState(['tickets', 'state_options', 'users']),
|
||||||
...mapGetters(['availableShippingVoucherTypes']),
|
...mapGetters(['availableShippingVoucherTypes']),
|
||||||
|
@ -134,12 +124,14 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.scheduleAfterInit(() => [this.fetchTicketStates(), this.loadTickets(), this.loadUsers(),
|
this.scheduleAfterInit(() => [Promise.all([this.fetchTicketStates(), this.loadTickets(), this.loadUsers(), this.fetchShippingVouchers()]).then(()=>{
|
||||||
this.fetchShippingVouchers()]);
|
this.selected_state = this.ticket.state;
|
||||||
|
this.selected_assignee = this.ticket.assigned_to
|
||||||
|
})]);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue