diff --git a/dotcom-rendering/src/components/SelfHostedVideo.island.tsx b/dotcom-rendering/src/components/SelfHostedVideo.island.tsx index 615a6c94c7a..3ca38897ea0 100644 --- a/dotcom-rendering/src/components/SelfHostedVideo.island.tsx +++ b/dotcom-rendering/src/components/SelfHostedVideo.island.tsx @@ -319,6 +319,7 @@ type Props = { isExternalLink: boolean; }; isInLoopClickTestVariant?: boolean; + isInArticle?: boolean; }; export const SelfHostedVideo = ({ @@ -351,6 +352,7 @@ export const SelfHostedVideo = ({ restrictHeightOnDesktop = false, cardLink, isInLoopClickTestVariant, + isInArticle = false, }: Props) => { const adapted = useShouldAdapt(); const { renderingTarget } = useConfig(); @@ -1071,13 +1073,22 @@ export const SelfHostedVideo = ({ } } + const videoStyleFormat = videoStyle.toLocaleLowerCase(); + return (
- - - -
+ + + ); };