You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2023/12/07 21:51:22 UTC

(superset) branch master updated: fix: support custom links in markdown (#26211)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new d2adc858cb fix: support custom links in markdown (#26211)
d2adc858cb is described below

commit d2adc858cbdf1242d96cf7cc0363e39afba88990
Author: Ville Brofeldt <33...@users.noreply.github.com>
AuthorDate: Thu Dec 7 13:51:15 2023 -0800

    fix: support custom links in markdown (#26211)
---
 .../packages/superset-ui-core/src/components/SafeMarkdown.tsx            | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/packages/superset-ui-core/src/components/SafeMarkdown.tsx b/superset-frontend/packages/superset-ui-core/src/components/SafeMarkdown.tsx
index b0826ce2ed..2b36802d4b 100644
--- a/superset-frontend/packages/superset-ui-core/src/components/SafeMarkdown.tsx
+++ b/superset-frontend/packages/superset-ui-core/src/components/SafeMarkdown.tsx
@@ -67,6 +67,7 @@ function SafeMarkdown({
       rehypePlugins={rehypePlugins}
       remarkPlugins={[remarkGfm]}
       skipHtml={false}
+      transformLinkUri={null}
     >
       {source}
     </ReactMarkdown>