From 6dd10ab1ca7a39a099792532c6483c45fa2af88e Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Mon, 3 Mar 2025 15:04:05 -0700 Subject: [PATCH] fix(tooltip): displaying tags correctly (#32488) (cherry picked from commit 6c3886aad0c0a2a5abcc0e14872c52224f8a736e) --- .../plugin-chart-pivot-table/src/plugin/controlPanel.tsx | 2 +- .../plugins/plugin-chart-table/src/controlPanel.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx index 47d442bed55..f18c6c41f55 100644 --- a/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx @@ -442,7 +442,7 @@ const config: ControlPanelConfig = { renderTrigger: true, default: true, description: t( - 'Renders table cells as HTML when applicable. For example, HTML <a> tags will be rendered as hyperlinks.', + 'Renders table cells as HTML when applicable. For example, HTML tags will be rendered as hyperlinks.', ), }, }, diff --git a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx index c39ad116c73..933ee6a0c1d 100644 --- a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx +++ b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx @@ -467,7 +467,7 @@ const config: ControlPanelConfig = { renderTrigger: true, default: true, description: t( - 'Renders table cells as HTML when applicable. For example, HTML <a> tags will be rendered as hyperlinks.', + 'Renders table cells as HTML when applicable. For example, HTML tags will be rendered as hyperlinks.', ), }, },