mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-06-09 06:14:56 +08:00
Fix issue label rendering in the issue popup (#30763)
This commit is contained in:
@ -53,7 +53,7 @@ export function initCommonIssueListQuickGoto() {
|
||||
// try to check whether the parsed goto link is valid
|
||||
let targetUrl = parseIssueListQuickGotoLink(repoLink, searchText);
|
||||
if (targetUrl) {
|
||||
const res = await GET(`${targetUrl}/info`);
|
||||
const res = await GET(`${targetUrl}/info`); // backend: GetIssueInfo, it only checks whether the issue exists by status code
|
||||
if (res.status !== 200) targetUrl = '';
|
||||
}
|
||||
// if the input value has changed, then ignore the result
|
||||
|
Reference in New Issue
Block a user