Skip to content

Commit

Permalink
fix: change Resolve btn to 'Resolve and Close' on portal (#1645)
Browse files Browse the repository at this point in the history
* fix!: change Resolve btn to Resolve and Close on portal

On Resolve and Close, change the status to close

* chore: better name for close button
  • Loading branch information
shadrak98 authored Dec 12, 2023
1 parent d0ba8b4 commit 15d849a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion desk/src/pages/ticket/TicketCustomer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</Button>
<Button
v-if="showResolveButton"
label="Resolve"
label="Close"
theme="gray"
variant="solid"
@click="showFeedbackDialog = !showFeedbackDialog"
Expand Down
2 changes: 1 addition & 1 deletion desk/src/pages/ticket/TicketFeedback.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
onClick: () =>
setValue.submit({
fieldname: {
status: 'Resolved',
status: 'Closed',
feedback: preset,
feedback_extra: text,
},
Expand Down

0 comments on commit 15d849a

Please sign in to comment.