Cloudwatch Variable Editor: Adjust width in new form styling (#80387)

This commit is contained in:
Ida Štambuk
2024-01-12 12:07:22 +01:00
committed by GitHub
parent 7dc6a047f7
commit dfc251d5b9

View File

@@ -114,7 +114,7 @@ export const VariableQueryEditor = ({ query, datasource, onChange }: Props) => {
VariableQueryType.DimensionValues,
].includes(parsedQuery.queryType);
return (
<>
<div className={newFormStylingEnabled ? 'width-15' : ''}>
<VariableQueryField
value={parsedQuery.queryType}
options={queryTypes}
@@ -333,6 +333,6 @@ export const VariableQueryEditor = ({ query, datasource, onChange }: Props) => {
newFormStylingEnabled={newFormStylingEnabled}
/>
)}
</>
</div>
);
};