diff options
| author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-07-06 09:19:10 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-06 09:19:10 +0900 |
| commit | 6b2c92cb68cf808e1e45aa8f8d4e5bea4b1e81ba (patch) | |
| tree | 7e3c237d2a36e27d1352775f8615592b6d722e85 | |
| parent | feat(frontend): 画像を動画と同様に簡単に隠せるように (#11127) (diff) | |
| download | sharkey-6b2c92cb68cf808e1e45aa8f8d4e5bea4b1e81ba.tar.gz sharkey-6b2c92cb68cf808e1e45aa8f8d4e5bea4b1e81ba.tar.bz2 sharkey-6b2c92cb68cf808e1e45aa8f8d4e5bea4b1e81ba.zip | |
chore(backend): fix typo in MkImgWithBlurhash.vue (#11125)
occured -> occurred
| -rw-r--r-- | packages/frontend/src/components/MkImgWithBlurhash.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkImgWithBlurhash.vue b/packages/frontend/src/components/MkImgWithBlurhash.vue index cb229fa241..4e36defb7c 100644 --- a/packages/frontend/src/components/MkImgWithBlurhash.vue +++ b/packages/frontend/src/components/MkImgWithBlurhash.vue @@ -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); } } } |