1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

fix: Remove curly bracket typo from HTML links

Closes #1142
This commit is contained in:
Maksim Eltyshev 2025-05-22 11:16:08 +02:00
parent 2db75ed420
commit 9fd9370120
2 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@ const buildTitle = (action, t) => {
const buildBodyByFormat = (board, card, action, actorUser, t) => {
const markdownCardLink = `[${escapeMarkdown(card.name)}](${sails.config.custom.baseUrl}/cards/${card.id})`;
const htmlCardLink = `<a href="${sails.config.custom.baseUrl}/cards/${card.id}}">${escapeHtml(card.name)}</a>`;
const htmlCardLink = `<a href="${sails.config.custom.baseUrl}/cards/${card.id}">${escapeHtml(card.name)}</a>`;
switch (action.type) {
case Action.Types.CREATE_CARD: {