Skip to content

Commit

Permalink
Fix org unmerge reload
Browse files Browse the repository at this point in the history
  • Loading branch information
gaspergrom committed Sep 17, 2024
1 parent 570e7de commit 4debeb8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const fetchingPreview = ref(false);
const preview = ref(null);
const selectedIdentity = ref(null);
const { getOrganizationMergeActions } = useOrganizationStore();
const { getOrganizationMergeActions, fetchOrganization } = useOrganizationStore();
const parseIdentityValues = (identity) => {
const splittedIdentity = identity.value?.split(':');
Expand Down Expand Up @@ -325,6 +325,7 @@ const unmerge = () => {
title: 'Organizations unmerging in progress',
},
);
fetchOrganization(props.modelValue?.id);
emit('update:modelValue', null);
})
.catch(() => {
Expand Down

0 comments on commit 4debeb8

Please sign in to comment.