Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
syuilo 2022-12-20 08:35:51 +09:00
commit f69a65ccb0
1 changed files with 4 additions and 2 deletions

View File

@ -62,14 +62,16 @@ const src = computed(() => {
}
});
const scriptId = computed(() => `script-${props.provider}`)
const captcha = computed<Captcha>(() => window[variable.value] || {} as unknown as Captcha);
if (loaded) {
available.value = true;
} else {
(document.getElementById(props.provider) || document.head.appendChild(Object.assign(document.createElement('script'), {
(document.getElementById(scriptId.value) || document.head.appendChild(Object.assign(document.createElement('script'), {
async: true,
id: props.provider,
id: scriptId.value,
src: src.value,
})))
.addEventListener('load', () => available.value = true);