Skip to content

Commit e92972f

Browse files
committed
Merge branch 'feat/target-platform' into feat/build-time-breakdown
2 parents f06c017 + 2b2f36d commit e92972f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Shared/Components/CICDHistory/Artifacts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const CIListItem = ({
104104

105105
{type !== 'report' && (
106106
<>
107-
{targetPlatforms?.length && (
107+
{!!targetPlatforms?.length && (
108108
<div className="mt-8 flexbox-col dc__gap-8">
109109
<TargetPlatformBadgeList targetPlatforms={targetPlatforms} />
110110
</div>

src/Shared/Components/ImageCard/SequentialCDCardTitle/SequentialCDCardTitle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const SequentialCDCardTitle = ({
117117
}
118118

119119
return (
120-
<div className={`bg__primary pb-8 br-4 flex left ${addFlexGap ? 'dc__gap-8' : ''}`}>
120+
<div className={`bg__primary pb-8 br-4 flex left flex-wrap ${addFlexGap ? 'dc__gap-8' : ''}`}>
121121
{renderContent()}
122122

123123
{!!targetPlatforms?.length && (

src/Shared/Components/TargetPlatforms/TargetPlatformBadgeList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Tooltip } from '@Common/Tooltip'
33
import { TargetPlatformBadgeListProps } from './types'
44

55
const TargetPlatformBadge = ({ name }: TargetPlatformBadgeListProps['targetPlatforms'][number]) => (
6-
<div className="bg__secondary py-2 px-6 dc__mxw-200">
6+
<div className="bg__secondary py-2 px-6 dc__mxw-200 br-4">
77
<Tooltip content={name}>
88
<span className="dc__truncate cn-7 fs-12 fw-5 lh-16">{name}</span>
99
</Tooltip>

0 commit comments

Comments
 (0)