Skip to content

Commit

Permalink
Restrict approved checkmark search to current item (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
eritbh authored Nov 19, 2021
1 parent 226382f commit 98fdd2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/data/tbcore.js
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ function initwrapper ({userDetails, newModSubs, cacheDetails}) {
}
}
}
const approved_text = $entry.find('.approval-checkmark').attr('title') || $thing.find('.approval-checkmark').attr('title') || '';
const approved_text = $entry.find('.approval-checkmark').attr('title') || '';
approved_by = approved_text.match(/by\s(.+?)\s/) || '';
}

Expand Down

0 comments on commit 98fdd2a

Please sign in to comment.