Skip to content

Commit eb23bda

Browse files
authored
Merge pull request #7 from Automattic/master
Fix for newer Github Issues markup
2 parents 0d823ca + 6b06b20 commit eb23bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github-storypoints.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var addStoryPointsForColumn = (column) => {
5151
.filter(card => !card.classList.contains('sortable-ghost'))
5252
.map(card => {
5353
const titleElementContainer = Array
54-
.from(card.getElementsByTagName('h5'))
54+
.from(card.getElementsByClassName('h5'))
5555
.concat(Array.from(card.getElementsByTagName('p')))[0];
5656
const titleElementLink = (
5757
titleElementContainer.getElementsByTagName &&

0 commit comments

Comments
 (0)