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 <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Jun 12, 2023
1 parent 7e0cbd4 commit 9a4b4a6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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
8 changes: 4 additions & 4 deletions src/components/Settings/PhotosLocationSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ import UserConfig from '../../mixins/UserConfig.js'
export default {
name: 'PhotosLocationSettings',
mixins: [
UserConfig,
],
components: {
NcButton,
NcTextField,
Folder,
},
mixins: [
UserConfig,
],
methods: {
debounceSelectPhotosFolder: debounce(function() {
this.selectPhotosFolder()
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 9a4b4a6

Please sign in to comment.