Merge pull request #3541 from h3poteto/fix/list-membership

Fix loading of ListMembership modal
This commit is contained in:
AkiraFukushima 2022-08-03 09:58:30 +09:00 committed by GitHub
commit 718ebdef42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,8 +54,8 @@ export default defineComponent({
onMounted(async () => {
loading.value = true
try {
await store.dispatch(`${space}/${ACTION_TYPES.FETCH_LIST_MEMBERSHIP}`, account.value)
await store.dispatch(`${space}/${ACTION_TYPES.FETCH_LISTS}`)
await store.dispatch(`${space}/${ACTION_TYPES.FETCH_LIST_MEMBERSHIP}`, account.value)
} catch (err) {
ElMessage({
message: i18n.t('message.lists_fetch_error'),