Skip to content

Commit

Permalink
web/satellite: change order of projects and invitations in dashboard
Browse files Browse the repository at this point in the history
This change places project invitations ahead of projects in the cards
view of the All Projects Dashboard in order to be consistent with our
designs.

References #5855

Change-Id: I31268b97a9af2279bf90a171d0958b5a4bcbf13b
  • Loading branch information
jewharton committed Jun 13, 2023
1 parent 62c29ee commit ed37d72
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -67,8 +67,8 @@
<div v-if="projects.length || invites.length" class="my-projects__list">
<projects-table v-if="isTableViewSelected" :invites="invites" class="my-projects__list__table" />
<div v-else-if="!isTableViewSelected" class="my-projects__list__cards">
<project-item v-for="project in projects" :key="project.id" :project="project" />
<project-invitation-item v-for="invite in invites" :key="invite.projectID" :invitation="invite" />
<project-item v-for="project in projects" :key="project.id" :project="project" />
</div>
</div>
<div v-else class="my-projects__empty-area">
Expand Down

0 comments on commit ed37d72

Please sign in to comment.