Skip to content

Commit

Permalink
fix(eslint): Fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Jul 27, 2023
1 parent 2170379 commit 7750c16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Faces/FaceCover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default {
if (!this.cover) return {}
return this.getCoverStyle(this.face.basename)
},
}
},
}
</script>

Expand Down
2 changes: 1 addition & 1 deletion src/mixins/FaceCoverMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/

import { mapGetters } from 'vuex'
import he from "he";
import he from 'he'

export default {
name: 'FaceCoverMixin',
Expand Down
8 changes: 4 additions & 4 deletions src/views/FaceContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,6 @@ export default {
},
},
mounted() {
this.fetchFaceContent(this.faceName)
},
watch: {
face() {
if (this.face) {
Expand All @@ -290,6 +286,10 @@ export default {
},
},
mounted() {
this.fetchFaceContent(this.faceName)
},
methods: {
...mapActions([
'appendFiles',
Expand Down

0 comments on commit 7750c16

Please sign in to comment.