Skip to content

Commit

Permalink
Remove console logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
haringsrob committed Aug 17, 2022
1 parent 92765d9 commit 227cafb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions frontend/js/components/modals/ModalCreate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<a17-modal ref="modal" class="modal--form" :title="modalTitle" :forceClose="true">
<form :action="actionForm" @submit.prevent="submit">
<slot></slot>
{{language}}
<a17-modal-validation
:mode="mode"
ref="validation"
Expand Down Expand Up @@ -84,7 +83,6 @@
},
methods: {
open: function () {
console.log(this.language)
if (this.createMode) {
this.$store.commit(LANGUAGE.RESET_LANGUAGES)
}
Expand Down
2 changes: 0 additions & 2 deletions frontend/js/components/modals/ModalValidationButtons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,13 @@
})
this.fields = [...this.$parent.$el.querySelectorAll('input, textarea, select')]
this.fields.forEach((field) => {
console.log(field)
field.addEventListener('input', () => {
this.disable()
})
})
})
},
disable: function () {
console.log('here')
if (!this.fields) {
this.isDisabled = true
this.$emit('disable', true)
Expand Down

0 comments on commit 227cafb

Please sign in to comment.