This is an automated email from the ASF dual-hosted git repository.
michaelsmolina 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 ef0ede7c13 fix: update html rendering to true from false (#30565)
ef0ede7c13 is described below
commit ef0ede7c13c7352e8b8ca4c5ba1cf73f622a36c4
Author: Joe Li <[email protected]>
AuthorDate: Thu Oct 10 10:19:26 2024 -0700
fix: update html rendering to true from false (#30565)
---
superset-frontend/src/SqlLab/components/ResultSet/index.tsx | 2 +-
superset-frontend/src/SqlLab/components/SqlEditor/index.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
b/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
index 3e9c9db5c6..7d0df189a2 100644
--- a/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
+++ b/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
@@ -646,7 +646,7 @@ const ResultSet = ({
: [];
const allowHTML = getItem(
LocalStorageKeys.SqllabIsRenderHtmlEnabled,
- false,
+ true,
);
return (
<ResultContainer>
diff --git a/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx
b/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx
index e5b24b72ad..731053ac0b 100644
--- a/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx
+++ b/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx
@@ -308,7 +308,7 @@ const SqlEditor: FC<Props> = ({
getItem(LocalStorageKeys.SqllabIsAutocompleteEnabled, true),
);
const [renderHTMLEnabled, setRenderHTMLEnabled] = useState(
- getItem(LocalStorageKeys.SqllabIsRenderHtmlEnabled, false),
+ getItem(LocalStorageKeys.SqllabIsRenderHtmlEnabled, true),
);
const [showCreateAsModal, setShowCreateAsModal] = useState(false);
const [createAs, setCreateAs] = useState('');