Skip to content

Commit

Permalink
Fix merge suggestions loading (#2048)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaspergrom committed Jan 9, 2024
1 parent e61003c commit 29d7e36
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,20 @@
<!-- Comparison -->
<!-- Loading -->
<div v-if="loading" class="flex p-5">
<div class="w-1/2 border rounded-l-lg">
<div class="w-1/3 border rounded-l-lg">
<app-member-merge-suggestions-details
:member="null"
:loading="true"
:is-primary="true"
/>
</div>
<div class="w-1/2 -ml-px border rounded-r-lg">
<div class="w-1/3 -ml-px border rounded-r-lg">
<app-member-merge-suggestions-details
:member="null"
:loading="true"
/>
</div>
<div class="w-1/3 ml-8 border rounded-lg bg-brand-25">
<app-member-merge-suggestions-details
:member="null"
:loading="true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,26 @@
<!-- Comparison -->
<!-- Loading -->
<div v-if="loading" class="flex p-5">
<div class="w-1/2 border rounded-l-lg">
<div class="w-1/3 border rounded-l-lg">
<app-organization-merge-suggestions-details
:organization="null"
:loading="true"
:is-primary="true"
/>
</div>
<div class="w-1/2 -ml-px border rounded-r-lg">
<div class="w-1/3 -ml-px border rounded-r-lg">
<app-organization-merge-suggestions-details
:organization="null"
:loading="true"
/>
</div>

<div class="w-1/3 ml-8 border rounded-lg bg-brand-25">
<app-member-merge-suggestions-details
:member="null"
:loading="true"
/>
</div>
</div>
<div v-else class="flex p-5">
<div
Expand Down Expand Up @@ -150,6 +157,8 @@ import { useOrganizationStore } from '@/modules/organization/store/pinia';
import { storeToRefs } from 'pinia';
import { useRoute } from 'vue-router';
import { merge } from 'lodash';
import AppMemberMergeSuggestionsDetails
from '@/modules/member/components/suggestions/member-merge-suggestions-details.vue';
import { OrganizationService } from '../organization-service';
import { OrganizationPermissions } from '../organization-permissions';
Expand Down

0 comments on commit 29d7e36

Please sign in to comment.