mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Transformations: Make transform dropdowns not cropped (#24615)
This commit is contained in:
@@ -65,14 +65,21 @@ export class TransformationsEditor extends React.PureComponent<Props> {
|
||||
});
|
||||
|
||||
return (
|
||||
<ValuePicker
|
||||
size="md"
|
||||
variant="secondary"
|
||||
label="Add transformation"
|
||||
options={availableTransformers}
|
||||
onChange={this.onTransformationAdd}
|
||||
isFullWidth={false}
|
||||
/>
|
||||
<div
|
||||
className={css`
|
||||
max-width: 66%;
|
||||
`}
|
||||
>
|
||||
<ValuePicker
|
||||
size="md"
|
||||
variant="secondary"
|
||||
label="Add transformation"
|
||||
options={availableTransformers}
|
||||
onChange={this.onTransformationAdd}
|
||||
isFullWidth={false}
|
||||
menuPlacement="bottom"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user