Skip to content

Commit

Permalink
Merge branch 'async' into SDESK-7325
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLark86 committed Jul 30, 2024
2 parents 4232cb6 + d922deb commit f23d50d
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 f23d50d

Please sign in to comment.