Skip to content

Commit 071070a

Browse files
authored
remove issue/card title (#35)
1 parent 89bdeb7 commit 071070a

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

Diff for: dist/index.js

+10-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/views/renderCard.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,17 @@ export const renderCard = (
178178
) => {
179179
const { column, issue, card } = cardWithIssue;
180180

181-
const title = !issue ? card.note : issue.title;
181+
/**
182+
* Recently GitHub made the change that is the issue reference
183+
* is included into markdown, the title of the issue is
184+
* automatically rendered as the issue link text, so we don't
185+
* have to add the title now.
186+
*/
187+
// const title = (!issue)
188+
// ? card.note
189+
// : issue.title;
190+
191+
const title = '';
182192

183193
/**
184194
* If no associated issue found, item `url` it the URL to the

0 commit comments

Comments
 (0)