Skip to content

Commit

Permalink
fix: update html rendering to true from false (#30565)
Browse files Browse the repository at this point in the history
  • Loading branch information
sadpandajoe authored Oct 10, 2024
1 parent 62b94d5 commit ef0ede7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ const ResultSet = ({
: [];
const allowHTML = getItem(
LocalStorageKeys.SqllabIsRenderHtmlEnabled,
false,
true,
);
return (
<ResultContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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('');
Expand Down

0 comments on commit ef0ede7

Please sign in to comment.