mirror of
https://github.com/apache/superset.git
synced 2026-04-25 11:04:48 +00:00
feat(storybook): Co-habitating/Upgrading Storybooks to v7 (dependency madness ensues) (#26907)
This commit is contained in:
@@ -51,7 +51,9 @@ const StyledAceEditor = styled(AceEditor)`
|
||||
&& {
|
||||
// double class is better than !important
|
||||
border: 1px solid ${theme.colors.grayscale.light2};
|
||||
font-feature-settings: 'liga' off, 'calt' off;
|
||||
font-feature-settings:
|
||||
'liga' off,
|
||||
'calt' off;
|
||||
|
||||
&.ace_autocomplete {
|
||||
// Use !important because Ace Editor applies extra CSS at the last second
|
||||
|
||||
@@ -67,15 +67,15 @@ export function useAnnotations(params: FetchValidationQueryParams) {
|
||||
text: err.message,
|
||||
}))
|
||||
: isError
|
||||
? [
|
||||
{
|
||||
type: 'error',
|
||||
row: 0,
|
||||
column: 0,
|
||||
text: `The server failed to validate your query.\n${message}`,
|
||||
},
|
||||
]
|
||||
: [],
|
||||
? [
|
||||
{
|
||||
type: 'error',
|
||||
row: 0,
|
||||
column: 0,
|
||||
text: `The server failed to validate your query.\n${message}`,
|
||||
},
|
||||
]
|
||||
: [],
|
||||
};
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user