Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Query Editor toolbar folds to menu to fit the window size #2481

Merged
merged 7 commits into from
Dec 4, 2024
2 changes: 1 addition & 1 deletion src/webviews/QueryEditor/QueryEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const useStyles = makeStyles({
root: {
display: 'grid',
gridTemplateRows: '100vh',
minWidth: '900px',
// minWidth: '520px',
},
});

Expand Down
4 changes: 2 additions & 2 deletions src/webviews/QueryEditor/QueryPanel/QueryPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import { makeStyles } from '@fluentui/react-components';
import { QueryMonaco } from './QueryMonaco';
import { QueryToolbar } from './QueryToolbar';
import { QueryToolbarOverflow } from './QueryToolbarOverflow';

const useClasses = makeStyles({
monacoContainer: {
Expand All @@ -26,7 +26,7 @@ export const QueryPanel = () => {

return (
<section className={classes.container}>
<QueryToolbar />
<QueryToolbarOverflow />
<section className={classes.monacoContainer}>
<QueryMonaco />
</section>
Expand Down
207 changes: 0 additions & 207 deletions src/webviews/QueryEditor/QueryPanel/QueryToolbar.tsx

This file was deleted.

Loading
Loading