fix loading spinner
Some checks failed
Lint / pnpm_install (push) Successful in 1m48s
Test (production install and build) / production (22.11.0) (push) Successful in 1m1s
Publish Docker image / Build (push) Successful in 4m8s
Lint / pnpm_install (pull_request) Successful in 1m33s
Publish Docker image / Build (pull_request) Successful in 4m32s
Test (backend) / unit (22.11.0) (push) Failing after 7m40s
Test (production install and build) / production (22.11.0) (pull_request) Successful in 1m10s
Test (backend) / unit (22.11.0) (pull_request) Failing after 7m13s
Lint / lint (frontend) (push) Successful in 2m11s
Lint / lint (backend) (push) Successful in 2m34s
Lint / lint (frontend-embed) (push) Successful in 2m42s
Lint / lint (frontend-shared) (push) Successful in 2m28s
Lint / lint (misskey-bubble-game) (push) Successful in 2m35s
Lint / lint (misskey-js) (push) Successful in 2m25s
Lint / lint (misskey-reversi) (push) Successful in 2m33s
Lint / typecheck (misskey-js) (push) Successful in 1m36s
Lint / typecheck (backend) (push) Successful in 2m21s
Lint / lint (sw) (push) Successful in 2m59s
Lint / typecheck (sw) (push) Successful in 1m31s
Lint / lint (backend) (pull_request) Successful in 2m7s
Lint / lint (frontend) (pull_request) Successful in 2m11s
Lint / lint (frontend-embed) (pull_request) Successful in 2m10s
Lint / lint (frontend-shared) (pull_request) Successful in 2m16s
Lint / lint (misskey-bubble-game) (pull_request) Successful in 2m17s
Lint / lint (misskey-js) (pull_request) Successful in 2m15s
Lint / lint (misskey-reversi) (pull_request) Successful in 2m16s
Lint / lint (sw) (pull_request) Successful in 2m3s
Lint / typecheck (backend) (pull_request) Successful in 1m51s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m35s
Lint / typecheck (sw) (pull_request) Successful in 1m37s

Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
ゆめ 2024-11-24 11:44:16 -06:00
parent 1192cffa29
commit e59b4ccd50
No known key found for this signature in database

View file

@ -7,6 +7,6 @@ export const commonPugFilters = {
throw new Error('Invalid mimeType');
}
const dataURI = `data:${options.mimeType};base64,${Buffer.from(data).toString('base64')}`;
return `<${options.tagName} data="${dataURI}"></${options.tagName}>`;
return `<${options.tagName} src="${dataURI}"></${options.tagName}>`;
}
} as const;