Skip to content

Commit

Permalink
Fix: remove space-between of option select #24
Browse files Browse the repository at this point in the history
  • Loading branch information
luckylooky2 committed Apr 7, 2024
1 parent 9965778 commit 8932a9f
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 @@ -37,7 +37,7 @@ const getStyles = (theme: GrafanaTheme2) => {
return {
selectBar: css({
display: 'flex',
justifyContent: 'space-between',
// justifyContent: 'space-between',
}),
};
};
Expand Down
2 changes: 1 addition & 1 deletion public/app/features/variables/pickers/PickerRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const PickerRenderer = (props: Props) => {

return (
<div className="gf-form">
<PickerLabel variable={props.variable} />
{/* <PickerLabel variable={props.variable} /> */}
{props.variable.hide !== VariableHide.hideVariable && PickerToRender && (
<PickerToRender variable={props.variable} readOnly={props.readOnly ?? false} />
)}
Expand Down

0 comments on commit 8932a9f

Please sign in to comment.