You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
consttitle=`Accessibility issue: ${finding.problemShort[0].toUpperCase()+finding.problemShort.slice(1)} on ${newURL(finding.url).pathname}`;
21
+
constsolutionLong=finding.solutionLong
22
+
?.split("\n")
23
+
.map((line)=>
24
+
!line.trim().startsWith("Fix any")&&
25
+
!line.trim().startsWith("Fix all")&&
26
+
line.trim()!==""
27
+
? `- ${line}`
28
+
: line
29
+
)
30
+
.join("\n");
31
+
constbody=`
32
+
An accessibility scan flagged the element \`${finding.html}\` on ${finding.url} because ${finding.problemShort}. Learn more about why this was flagged by visiting ${finding.problemUrl}.
0 commit comments