Skip to content

Commit

Permalink
Merge branch 'develop' into feature/multiple-events-in-planning
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLark86 committed Jul 30, 2024
2 parents 3578f24 + 0b2e3be commit 6835b24
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions client/components/Main/ListPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -422,18 +422,16 @@ export class ListPanel extends React.Component<IProps, IState> {
/>
);
})}
{!isAllListItemsLoaded && (
{(!isAllListItemsLoaded && loadingIndicator) && (
<div className="ListGroup">
<Group>
<Item noBg={true}>
<Column grow={true}>
<div
className="sd-alert sd-alert--hollow sd-alert--primary sd-alert--align"
>
{gettext('loading more items...')}
</div>
</Column>
</Item>
<Column grow={true}>
<div
className="sd-alert sd-alert--hollow sd-alert--primary sd-alert--align"
>
{gettext('loading more items...')}
</div>
</Column>
</Group>
</div>
)}
Expand Down

0 comments on commit 6835b24

Please sign in to comment.