Skip to content

Commit

Permalink
chore: show loading before finish load file list
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 Nov 25, 2024
1 parent 0985fd4 commit a29a32a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/FilesList/FilesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default {
},
data() {
return {
loading: false,
loading: true,
dirContentsFiltered: [],
}
},
Expand Down Expand Up @@ -133,6 +133,7 @@ export default {
},
async mounted() {
await this.filesStore.getAllFiles({ force_fetch: true })
this.loading = false
subscribe('libresign:visible-elements-saved', this.closeSidebar)
this.filesStore.disableIdentifySigner()
},
Expand Down

0 comments on commit a29a32a

Please sign in to comment.