Skip to content

Commit

Permalink
Omit loading message from project sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Feb 20, 2024
1 parent 1c7ee2c commit db73017
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/app/sidebar/projects/ProjectList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@
</Button>
</ListHeader>
{#if $expanded}
{#await promise}
<p>Loading…</p>
{:then projects}
{#await promise then projects}
<div class="projectcontainer">
{#if projects.length > 0}
{#each projects as project}
Expand Down Expand Up @@ -108,9 +106,11 @@
z-index: var(--sidebarStickyZ);
}
small {
small,
.loading {
font-size: 13px;
color: var(--gray);
text-align: center;
margin: 0 24px;
display: block;
}
Expand Down

0 comments on commit db73017

Please sign in to comment.