Skip to content

Commit

Permalink
Fix a mismatched colspan for the app list on the Source details page (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
eabruzzese authored Apr 5, 2024
1 parent 146f9bd commit da91bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/shared/app/app-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ export const AppListBySource = ({
</THead>

<TBody>
{paginated.data.length === 0 ? <EmptyTr colSpan={5} /> : null}
{paginated.data.length === 0 ? <EmptyTr colSpan={7} /> : null}
{paginated.data.map((app) => (
<AppListBySourceRow app={app} key={app.id} />
))}
Expand Down

0 comments on commit da91bb5

Please sign in to comment.