Skip to content

Commit

Permalink
fix: use async await
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos authored and backportbot-libresign[bot] committed Jan 28, 2025
1 parent cd209b3 commit 915e8d7
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 915e8d7

Please sign in to comment.