fix(labels): unset loading state after loading all labels
This commit is contained in:
parent
937fd36f72
commit
6e5501a5f1
1 changed files with 1 additions and 2 deletions
|
@ -80,12 +80,11 @@ export const useLabelStore = defineStore('label', {
|
|||
return
|
||||
}
|
||||
|
||||
const cancel = setLoadingPinia(useLabelStore)
|
||||
const cancel = setLoadingPinia(useLabelStore, this.setIsLoading)
|
||||
|
||||
try {
|
||||
const labels = await getAllLabels()
|
||||
this.setLabels(labels)
|
||||
this.setIsLoading(true)
|
||||
return labels
|
||||
} finally {
|
||||
cancel()
|
||||
|
|
Loading…
Reference in a new issue