Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(youtrack): Fix YouTrack integration for single issue pages #2330

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/content/youtrack.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,14 @@ togglbutton.render(
'div[data-test="issue-container"]:not(.toggl)',
{ observe: true },
function (elem) {
console.log('Toggl Button: Reporter info not found.')
const reporterInfo = elem.querySelector('span[data-test="reporter-info"]');
const reporterInfo = elem.querySelector('[data-test="reporter-info"]');
if (reporterInfo === null) {
console.log('Toggl Button: Reporter info not found.')
return;
}
const reporterInfoContainer = reporterInfo.parentElement;

const issueIdElem = reporterInfoContainer.querySelector('a[href*="issue/"] > span');
const issueIdElem = reporterInfoContainer.querySelector('a[href*="issue/"]');
const issueId = issueIdElem ? issueIdElem.textContent.trim() : "";

const issueTitleElem = elem.querySelector('h1');
Expand Down