Skip to content

Commit

Permalink
Fix block overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
farski committed Mar 20, 2024
1 parent bc4cd85 commit 4ea552b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/suspended-tickets-poller/message.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function msg(ticket) {
},
text: {
type: "plain_text",
text: `Are you sure you want to delete this ticket:\n"${ticket.subject}"?\n\nThe ticket will be deleted immediately and this cannot be undone.`,
text: `Are you sure you want to delete this ticket:\n"${ticket.subject.slice(0, 150)}"?\n\nThe ticket will be deleted immediately and this cannot be undone.`,
},
confirm: {
type: "plain_text",
Expand Down

0 comments on commit 4ea552b

Please sign in to comment.