Fix additional linting issues

This commit is contained in:
Ciaran Ainsworth 2022-02-21 20:02:08 +01:00
parent d92d75f822
commit d949909c40
2 changed files with 2 additions and 2 deletions

View File

@ -350,7 +350,7 @@ import url from '@/utils/url'
import axios from 'axios' import axios from 'axios'
import VolumeControl from './VolumeControl.vue' import VolumeControl from './VolumeControl.vue'
import TrackFavoriteIcon from '@/components/favorites/TrackFavoriteIcon.vue' import TrackFavoriteIcon from '@/components/favorites/TrackFavoriteIcon.vue'
import TrackPlaylistIcon from '@/components/playlists/TrackPlaylistIcon.vue' import TrackPlaylistIcon from '@/components/playlists/TrackPlaylistIcon.vue'
export default { export default {
components: { components: {

View File

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