chore(backend): fix typo in MkImgWithBlurhash.vue (#11125)
occured -> occurred
This commit is contained in:
parent
dc8763215a
commit
6b2c92cb68
|
@ -108,7 +108,7 @@ function waitForDecode() {
|
||||||
.then(() => {
|
.then(() => {
|
||||||
loaded = true;
|
loaded = true;
|
||||||
}, error => {
|
}, error => {
|
||||||
console.error('Error occured during decoding image', img.value, error);
|
console.error('Error occurred during decoding image', img.value, error);
|
||||||
throw Error(error);
|
throw Error(error);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
@ -180,7 +180,7 @@ async function draw() {
|
||||||
render(props.hash, work);
|
render(props.hash, work);
|
||||||
drawImage(work);
|
drawImage(work);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error occured during drawing blurhash', error);
|
console.error('Error occurred during drawing blurhash', error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue