all repos — stealth-developers @ 09320bf1c9710283bf986fc7672703b96918c031

bot: actual link
vi did:web:vt3e.cat
Tue, 30 Jun 2026 01:27:25 +0100
commit

09320bf1c9710283bf986fc7672703b96918c031

parent

a698def828b14408536d79fe4aab50d1d0a94248

2 files changed, 7 insertions(+), 6 deletions(-)

jump to
M apps/bot/src/feats/tickets/actions/helpers.tsapps/bot/src/feats/tickets/actions/helpers.ts

@@ -122,7 +122,11 @@ if (!limitedDetails)

actionRow.addComponents( TicketButtonPresets.viewCommentsButton(ticket.id, ticket.comments.length), ); - actionRow.addComponents(TicketButtonPresets.transcriptsLink(ticket.id)); + actionRow.addComponents( + TicketButtonPresets.transcriptsLink( + `https://tickets.vt3e.cat/guilds/${ticket.guild!.discordId}/tickets/${ticket.localId}`, + ), + ); container.addActionRowComponents(actionRow); return container;
M apps/bot/src/feats/tickets/buttons.tsapps/bot/src/feats/tickets/buttons.ts

@@ -359,11 +359,8 @@ .setLabel("Delete Channel")

.setStyle(ButtonStyle.Danger), // - transcriptsLink: (id: string) => - new ButtonBuilder() - .setLabel("View on Web") - .setURL(`https://tickets.vt3e.cat/tickets/${id}`) - .setStyle(ButtonStyle.Link), + transcriptsLink: (url: string) => + new ButtonBuilder().setLabel("View on Web").setURL(url).setStyle(ButtonStyle.Link), uploadLink: (id: string) => new ButtonBuilder()