Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: ticket list #1189

Merged
merged 13 commits into from
May 18, 2023
Prev Previous commit
Next Next commit
fix: replace this
  • Loading branch information
ssiyad committed May 17, 2023
commit 2d680221dbb2182a0f643304fa8bd9c6199a590d
4 changes: 2 additions & 2 deletions desk/src/pages/desk/ticket-list/MainTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function statusDropdownOptions(ticketId: number, currentStatus: string) {
.map((o) => ({
label: o,
handler: () =>
this.ticketList.setValue.submit({
tickets.setValue.submit({
name: ticketId,
status: o,
}),
Expand All @@ -173,7 +173,7 @@ function priorityDropdownOptions(ticketId: number, currentPriority: string) {
.map((o) => ({
label: o,
handler: () =>
this.ticketList.setValue.submit({
tickets.setValue.submit({
name: ticketId,
priority: o,
}),
Expand Down