Skip to content

Commit

Permalink
Improve references slack rendering (#4184)
Browse files Browse the repository at this point in the history
  • Loading branch information
flvndvd authored Mar 7, 2024
1 parent ef85fcf commit 9ab0825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connectors/src/connectors/slack/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -580,11 +580,11 @@ function _processCiteMention(
}/builder/data-sources/${
ref.dataSourceId
}/upsert?documentId=${encodeURIComponent(ref.documentId)}`;
return `[<${link}|${refCounter[k]}>]`;
return `[${refCounter[k]}](${link})`;
}
return "";
})
.join("");
.join(" ");
});
}

Expand Down

0 comments on commit 9ab0825

Please sign in to comment.