mirror of
https://github.com/apache/superset.git
synced 2026-04-07 18:35:15 +00:00
fix: update html rendering to true from false (#30565)
This commit is contained in:
@@ -646,7 +646,7 @@ const ResultSet = ({
|
||||
: [];
|
||||
const allowHTML = getItem(
|
||||
LocalStorageKeys.SqllabIsRenderHtmlEnabled,
|
||||
false,
|
||||
true,
|
||||
);
|
||||
return (
|
||||
<ResultContainer>
|
||||
|
||||
@@ -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('');
|
||||
|
||||
Reference in New Issue
Block a user