disable Assigned Ticket butten in ticket view until they would actually do something
This commit is contained in:
parent
c0388e2b54
commit
cf48428a4c
2 changed files with 6 additions and 4 deletions
|
@ -130,4 +130,4 @@ export default {
|
|||
transform: translate(24px, 0);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
@ -18,8 +18,10 @@
|
|||
<select class="form-control" v-model="ticket.assigned_to">
|
||||
<option v-for="user in users" :value="user.username">{{ user.username }}</option>
|
||||
</select>
|
||||
<button class="form-control btn btn-success" @click="assignTicket(ticket)">
|
||||
Assign Ticket
|
||||
<button class="form-control btn btn-success"
|
||||
@click="assignTicket(ticket)"
|
||||
:disabled="!ticket.assigned_to">
|
||||
Assign Ticket
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
|
@ -124,4 +126,4 @@ export default {
|
|||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue