diff --git a/web-app/src/app/screens/Feed/FeedSummary.tsx b/web-app/src/app/screens/Feed/FeedSummary.tsx index a4b98340c..d4c489d2b 100644 --- a/web-app/src/app/screens/Feed/FeedSummary.tsx +++ b/web-app/src/app/screens/Feed/FeedSummary.tsx @@ -33,6 +33,17 @@ const boxElementStyle: SxProps = { mb: 1, }; +const boxElementStyleTransitProvider: SxProps = { + width: '100%', + mt: 2, + borderBottom: 'none', +}; + +const boxElementStyleProducerURL: SxProps = { + width: '100%', + mb: 1, +}; + const ResponsiveListItem = styled('li')(({ theme }) => ({ width: '100%', margin: '5px 0', @@ -79,7 +90,7 @@ export default function FeedSummary({ {getLocationName(feed?.locations)} - + {providersToDisplay.map((provider) => ( @@ -129,7 +141,7 @@ export default function FeedSummary({ )} - + - - - {t('authenticationType')} - - - {feed?.source_info?.authentication_type === 1 && t('common:apiKey')} - {feed?.source_info?.authentication_type === 2 && - t('common:httpHeader')} - - + {feed?.source_info?.authentication_type !== 0 && ( + + + {t('authenticationType')} + + + {feed?.source_info?.authentication_type === 1 && t('common:apiKey')} + {feed?.source_info?.authentication_type === 2 && + t('common:httpHeader')} + + + )} {hasAuthenticationInfo && (