Skip to content

Commit

Permalink
Removed some debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
rslanzi committed Mar 14, 2021
1 parent 8c2dee6 commit 194ebcb
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions resources/js/components/Code/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,8 @@ export default {
watch: {
value(val) {
try {
console.log(val)
this.$emit('change', val)
} catch (e) {}
},
instanceValue(val) {
console.warning(val)
}
},
}
Expand Down
1 change: 0 additions & 1 deletion resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@
},
handleKeydown(event) {
console.log(this.slugField);
Nova.$emit('field-update-' + this.slugField, {
value: event.target.value
})
Expand Down
1 change: 0 additions & 1 deletion resources/js/components/Slug/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export default {
this.currentLocale = this.locales[0] || null;
Nova.$on('field-update-' + this.field.name, ({value}) => {
console.log('value');
this.generateSlug(value)
})
Expand Down

0 comments on commit 194ebcb

Please sign in to comment.