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

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); const captcha = computed<Captcha>(() => window[variable.value] || {} as unknown as Captcha);
if (loaded) { if (loaded) {
available.value = true; available.value = true;
} else { } 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, async: true,
id: props.provider, id: scriptId.value,
src: src.value, src: src.value,
}))) })))
.addEventListener('load', () => available.value = true); .addEventListener('load', () => available.value = true);