Add gap between title text and loading spinner

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Fredrik Adelöw <freben@spotify.com>
This commit is contained in:
Fredrik Adelöw
2026-03-19 10:14:13 +01:00
parent eb30aafd2c
commit e073aaa9ac
@@ -203,8 +203,10 @@ export const CatalogTable = (props: CatalogTableProps) => {
.join(' ');
const title =
loading && !isLoading ? (
<span style={{ display: 'inline-flex', alignItems: 'center' }}>
{titleText}{' '}
<span
style={{ display: 'inline-flex', alignItems: 'center', gap: '0.5em' }}
>
{titleText}
<CircularProgress size="0.8em" data-testid="loading-indicator" />
</span>
) : (