Skip to content

Commit

Permalink
Merge pull request #4523 from LibreSign/backport/4518/stable30
Browse files Browse the repository at this point in the history
[stable30] fix: use async await
  • Loading branch information
vitormattos authored Jan 28, 2025
2 parents cd209b3 + 915e8d7 commit 9445b9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Settings/IdentificationDocuments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ export default {
idApprovalGroupsKey: 0,
}
},
created() {
this.searchGroup('')
this.getData()
async created() {
await this.searchGroup('')
await this.getData()
},
methods: {
async getData() {
Expand Down

0 comments on commit 9445b9e

Please sign in to comment.