File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
ImageCard/SequentialCDCardTitle Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ export const CIListItem = ({
104
104
105
105
{ type !== 'report' && (
106
106
< >
107
- { targetPlatforms ?. length && (
107
+ { ! ! targetPlatforms ?. length && (
108
108
< div className = "mt-8 flexbox-col dc__gap-8" >
109
109
< TargetPlatformBadgeList targetPlatforms = { targetPlatforms } />
110
110
</ div >
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ const SequentialCDCardTitle = ({
117
117
}
118
118
119
119
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' : '' } ` } >
121
121
{ renderContent ( ) }
122
122
123
123
{ ! ! targetPlatforms ?. length && (
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Tooltip } from '@Common/Tooltip'
3
3
import { TargetPlatformBadgeListProps } from './types'
4
4
5
5
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 " >
7
7
< Tooltip content = { name } >
8
8
< span className = "dc__truncate cn-7 fs-12 fw-5 lh-16" > { name } </ span >
9
9
</ Tooltip >
You can’t perform that action at this time.
0 commit comments