Skip to content

Commit 025d829

Browse files
committed
#RI-4877 - uncomment deleting title from links
1 parent 02f6f9d commit 025d829

File tree

1 file changed

+1
-1
lines changed
  • redisinsight/ui/src/pages/workbench/components/enablement-area/EnablementArea/utils/transform

1 file changed

+1
-1
lines changed

redisinsight/ui/src/pages/workbench/components/enablement-area/EnablementArea/utils/transform/rehypeLinks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const rehypeLinks = (config?: IConfig): (tree: Node) => void => (tree: an
1313
if (IS_ABSOLUTE_PATH.test(url)) { // External link
1414
node.properties.rel = ['nofollow', 'noopener', 'noreferrer']
1515
node.properties.target = '_blank'
16-
// delete node.properties.title
16+
delete node.properties.title
1717
}
1818
if (url.startsWith('#') && config?.history) {
1919
const { location: currentLocation } = config.history

0 commit comments

Comments
 (0)