Fix some linting issues

This commit is contained in:
Ciaran Ainsworth 2022-02-21 19:52:16 +01:00
commit 60c6a1938f
8 changed files with 62 additions and 38 deletions

View file

@ -143,8 +143,8 @@ export default {
try {
const response = await axios.post('text-preview/', { text: this.newValue, permissive: this.permissive })
this.preview = response.data.rendered
} catch {
} catch (error) {
console.error(error);
}
this.isLoadingPreview = false
}