fix(actions): drop wrapper span around the action status icon (#38957)

Fixes https://github.com/go-gitea/gitea/issues/38955
This commit is contained in:
silverwind
2026-08-18 00:46:49 +02:00
committed by GitHub
parent df71d5f5e2
commit 3842e021e0
3 changed files with 3 additions and 4 deletions
+1
View File
@@ -149,6 +149,7 @@ function attachLazyTooltip(el: HTMLElement): void {
let ariaLabelValue = content;
if (isHtml) ariaLabelValue = stripTags(content).replace(/\s+/g, ' ').trim();
el.setAttribute('aria-label', ariaLabelValue);
el.removeAttribute('aria-hidden');
}
}
}