Handle WF500 IDs on processing page

This commit is contained in:
2026-03-16 15:38:33 -05:00
parent 018593be05
commit 39efec9ed7
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -12,6 +12,7 @@ export function clearIssues() {
}
let socialRefsByIssueId = new Map();
const ISSUE_ID_LINE_PATTERN = /^((?:[A-Z]{2,6}|WF500)-\d{4,8})\s*[:\-]?\s*(.*)$/i;
const socialRefsReady = loadSocialRefs();
const issueFileDataCache = new Map();
const issueFilePromiseCache = new Map();
@@ -415,7 +416,7 @@ function dedupeIssues(issues, versionKey) {
function parseIssueLine(text) {
const value = String(text || '').trim();
const match = value.match(/^([A-Z]{2,6}-\d{4,8})\s*[:\-]?\s*(.*)$/i);
const match = value.match(ISSUE_ID_LINE_PATTERN);
if (match) {
return {
id: match[1].toUpperCase(),