Skip to content

Commit 567adeb

Browse files
authored
fix(orchestrator): fix use of 'xs' in grid.item (#667)
Signed-off-by: Marek Libra <marek.libra@gmail.com>
1 parent 2f33284 commit 567adeb

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@red-hat-developer-hub/backstage-plugin-orchestrator': patch
3+
---
4+
5+
fix use of 'xs' in grid.item

workspaces/orchestrator/plugins/orchestrator/src/components/OrchestratorPage/WorkflowsTabContent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export const WorkflowsTabContent = () => {
5252
{loading ? <Progress /> : null}
5353
{error ? <ResponseErrorPanel error={error} /> : null}
5454
{isReady ? (
55-
<Grid container direction="column" xs={12}>
56-
<Grid item>
55+
<Grid container direction="column">
56+
<Grid item xs={12}>
5757
<WorkflowsTable items={value ?? []} />
5858
</Grid>
5959
</Grid>

0 commit comments

Comments
 (0)