diff --git a/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx b/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx index 84a878235..5d6ac94c9 100644 --- a/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx +++ b/superset-frontend/src/SqlLab/components/RunQueryActionButton.tsx @@ -32,6 +32,9 @@ interface Props { stopQuery: () => void; sql: string; } +const commonBtnStyle = { + width: '80px', +}; const RunQueryActionButton = ({ allowAsync = false, @@ -51,6 +54,7 @@ const RunQueryActionButton = ({ bsSize: 'small', bsStyle: btnStyle, disabled: !dbId, + style: commonBtnStyle, }; if (shouldShowStopBtn) {