Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Lagarda committed Aug 21, 2020
1 parent a13df2b commit c6595c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions resources/js/components/ConfirmModalRemoveFile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<script>
export default {
props: {
active:{
active: {
default: false,
required: true,
type: Boolean
}
type: Boolean,
},
},
mounted() {
Expand All @@ -39,7 +39,7 @@ export default {
watch: {
// active(value) {
// if (value) {
// this.$refs.confirmButton.focus();
// this.$refs.confirmButton.focus();
// }
// }
},
Expand Down
6 changes: 3 additions & 3 deletions resources/js/components/ModalFileManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,13 @@ export default {
computed: {
filteredExtensions() {
const filter = _.get(this.filters, this.filterBy)
const filter = _.get(this.filters, this.filterBy);
if (filter) {
return filter
return filter;
}
return []
return [];
},
},
Expand Down

0 comments on commit c6595c2

Please sign in to comment.