Skip to content

Commit

Permalink
fix: undefined filters issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RitvikSardana committed Jan 17, 2025
1 parent e3bd063 commit 6bc5240
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions desk/src/pages/Tickets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ function apply() {
filters: filtersToApply,
page_length: pageLengthCount,
doctype: "HD Ticket",
columns: columns.length ? columns : undefined,
rows: rows.length ? rows : undefined,
columns: columns?.length ? columns : undefined,
rows: rows?.length ? rows : undefined,
show_customer_portal_fields: isCustomerPortal.value,
},
});
Expand Down

0 comments on commit 6bc5240

Please sign in to comment.