Skip to content

Commit eb12047

Browse files
TS-45780: Fix issue link
1 parent 331f9a0 commit eb12047

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/TeamscaleClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export default class TeamscaleClient {
183183
private wrapWithIssueIdLink(xhr: XMLHttpRequest, project: string, issueId: number) {
184184
const promise = this.generatePromise<string>(xhr).then(badge => {
185185
// Wrap the svg in a link element pointing to the issue perspective on Teamscale
186-
const issueUrl = `${this.url}/issues.html#/${project}/${issueId}`;
186+
const issueUrl = `${this.url}/activity/issue/${project}?id=${issueId}`;
187187
return `<a href="${issueUrl}" target="_top">${badge}</a>`;
188188
});
189189
xhr.send();

0 commit comments

Comments
 (0)