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(() => {
|
||||
loaded = true;
|
||||
}, error => {
|
||||
console.error('Error occured during decoding image', img.value, error);
|
||||
console.error('Error occurred during decoding image', img.value, error);
|
||||
throw Error(error);
|
||||
});
|
||||
} else {
|
||||
|
@ -180,7 +180,7 @@ async function draw() {
|
|||
render(props.hash, work);
|
||||
drawImage(work);
|
||||
} catch (error) {
|
||||
console.error('Error occured during drawing blurhash', error);
|
||||
console.error('Error occurred during drawing blurhash', error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue