Skip to content

Commit

Permalink
remove issue/card title (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
legomushroom authored Feb 16, 2021
1 parent 89bdeb7 commit 071070a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
11 changes: 10 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion src/views/renderCard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,17 @@ export const renderCard = (
) => {
const { column, issue, card } = cardWithIssue;

const title = !issue ? card.note : issue.title;
/**
* Recently GitHub made the change that is the issue reference
* is included into markdown, the title of the issue is
* automatically rendered as the issue link text, so we don't
* have to add the title now.
*/
// const title = (!issue)
// ? card.note
// : issue.title;

const title = '';

/**
* If no associated issue found, item `url` it the URL to the
Expand Down

0 comments on commit 071070a

Please sign in to comment.