change the ticket.state in the backend too
This commit is contained in:
parent
9902bda6d8
commit
e38e05d370
1 changed files with 2 additions and 1 deletions
|
@ -126,7 +126,8 @@ export default {
|
|||
mounted() {
|
||||
this.scheduleAfterInit(() => [Promise.all([this.fetchTicketStates(), this.loadTickets(), this.loadUsers(), this.fetchShippingVouchers()]).then(()=>{
|
||||
if (this.ticket.state == "pending_new"){
|
||||
this.ticket.state = "pending_open"
|
||||
this.selected_state = "pending_open";
|
||||
this.changeTicketStatus(this.ticket)
|
||||
};
|
||||
this.selected_state = this.ticket.state;
|
||||
this.selected_assignee = this.ticket.assigned_to
|
||||
|
|
Loading…
Reference in a new issue