Cloudwatch: Fix ui bug in template variable editor (#66207)

This commit is contained in:
SatVeer Singh 2023-04-11 22:07:08 +05:30 committed by GitHub
parent dcd976dc07
commit c4f2b50da9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,7 @@ export const VariableTextField = ({ interactive, label, onBlur, placeholder, val
value={localValue}
onChange={(e) => setLocalValue(e.currentTarget.value)}
onBlur={() => onBlur(localValue)}
width={25}
/>
</InlineField>
);