rangareddy commented on code in PR #13857:
URL: https://github.com/apache/hudi/pull/13857#discussion_r2347814927


##########
website/src/theme/BlogPostItem/BlogPostBox.js:
##########
@@ -87,7 +87,10 @@ export default function BlogPostBox({metadata = {}, assets, 
frontMatter}) {
                     )}
                     <TitleHeading className={styles.blogPostTitle} 
itemProp="headline">
                         {location.pathname.startsWith('/blog') ?
-                                <Link itemProp="url" to={permalink}>
+                                <Link itemProp="url" to={permalink} 
onClick={(e) => {
+                                        e.preventDefault();
+                                        window.open(permalink, '_blank', 
'noopener,noreferrer');
+                                    }}>

Review Comment:
   Clicking on a video link now opens a new tab, a behavior that was previously 
implemented.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to