mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
Backport #23352 This PR is to fix the error shown below. The reason is because [`class-name` prop](https://github.com/go-gitea/gitea/blob/main/web_src/js/components/ActionRunStatus.vue#L6) given to `svg` component has a space, and classList cannot add empty string. https://user-images.githubusercontent.com/17645053/223346720-c7f9de43-5e69-4ecf-93c0-90bf04090693.mov Co-authored-by: Hester Gong <hestergong@gmail.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
10df304b2f
commit
ed25e094ab
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,8 @@ export function svg(name, size = 16, className = '') {
|
|||
const svgNode = document.firstChild;
|
||||
if (size !== 16) svgNode.setAttribute('width', String(size));
|
||||
if (size !== 16) svgNode.setAttribute('height', String(size));
|
||||
if (className) svgNode.classList.add(...className.split(/\s+/));
|
||||
// filter array to remove empty string
|
||||
if (className) svgNode.classList.add(...className.split(/\s+/).filter(Boolean));
|
||||
return serializer.serializeToString(svgNode);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue