Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -393,10 +393,7 @@ export const FullSQLEditor = AsyncAceEditor(
},
);

export const MarkdownEditor = AsyncAceEditor([
'mode/markdown',
'theme/textmate',
]);
export const MarkdownEditor = AsyncAceEditor(['mode/markdown', 'theme/github']);

export const TextAreaEditor = AsyncAceEditor([
'mode/markdown',
Expand Down
7 changes: 1 addition & 6 deletions superset-frontend/src/features/home/RightMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -571,12 +571,7 @@ const RightMenu = ({
if (!navbarRight.user_is_anonymous && showActionDropdown) {
items.push({
key: 'new-dropdown',
label: (
<Icons.PlusOutlined
iconColor={theme.colorPrimary}
data-test="new-dropdown-icon"
/>
),
label: <Icons.PlusOutlined data-test="new-dropdown-icon" />,
className: 'submenu-with-caret',
icon: <Icons.CaretDownOutlined iconSize="xs" />,
children: buildNewDropdownItems(),
Expand Down
Loading