Skip to content

Commit

Permalink
Merge pull request #27 from oooholdings/dev
Browse files Browse the repository at this point in the history
Fix typo when checking for status
  • Loading branch information
btrsco authored Feb 3, 2023
2 parents 422dcb5 + 5cbdce9 commit fcc0c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export default {
},
mounted() {
if ( this.fillOnUpdate && this.status === 'update' ) this.regeneratePassword();
if ( this.fillOnCreate && this.status === 'created' ) this.regeneratePassword();
if ( this.fillOnCreate && this.status === 'create' ) this.regeneratePassword();
},
computed: {
responsiveClasses() {
Expand Down

0 comments on commit fcc0c5d

Please sign in to comment.