webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/EditableValueHelper.js in foreman_ansible-9.0.1 vs webpack/components/AnsibleHostDetail/components/AnsibleVariableOverrides/EditableValueHelper.js in foreman_ansible-10.0.0
- old
+ new
@@ -21,10 +21,14 @@
};
export const SelectField = componentProps => {
const { selectItems, ...rest } = componentProps;
return (
- <FormSelect className="without_select2" {...rest}>
+ <FormSelect
+ className="without_select2"
+ ouiaId="without-form-select"
+ {...rest}
+ >
{selectItems.map(item => (
<FormSelectOption key={item.id} value={item.value} label={item.name} />
))}
</FormSelect>
);