File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -474,7 +474,7 @@ const TestDetailsModal: React.FunctionComponent<TestDetailsModalProps> = ({
474474 < Grid
475475 container
476476 alignItems = "center"
477- spacing = { 2 }
477+ spacing = { 1 }
478478 className = { classes . imageToolbar }
479479 >
480480 < ImageDetails
@@ -531,7 +531,7 @@ const TestDetailsModal: React.FunctionComponent<TestDetailsModalProps> = ({
531531 < Grid
532532 container
533533 alignItems = "center"
534- spacing = { 2 }
534+ spacing = { 1 }
535535 className = { classes . imageToolbar }
536536 >
537537 < ImageDetails
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ interface IProps {
99export const TestVariationDetails : React . FunctionComponent < IProps > = ( {
1010 testVariation,
1111} ) => (
12- < Grid container direction = "column" spacing = { 2 } >
12+ < Grid container direction = "column" spacing = { 1 } >
1313 < Typography > { testVariation . name } </ Typography >
1414 < Grid container spacing = { 2 } >
1515 { testVariation . os && (
Original file line number Diff line number Diff line change @@ -85,10 +85,12 @@ const TestVariationDetailsPage: React.FunctionComponent = () => {
8585 Test Run
8686 </ Button >
8787 { baseline . testRun && (
88- < TestStatusChip status = { baseline . testRun . status } />
88+ < Box ml = { 1 } >
89+ < TestStatusChip status = { baseline . testRun . status } />
90+ </ Box >
8991 ) }
9092 { baseline . user && (
91- < Typography >
93+ < Typography ml = { 1 } >
9294 { `${ baseline . user . firstName } ${ baseline . user . lastName } <${ baseline . user . email } >` }
9395 </ Typography >
9496 ) }
You can’t perform that action at this time.
0 commit comments