16118: Adds test checking writable/readonly collection UI changes.
[arvados-workbench2.git] / src / views-components / resource-properties-form / property-value-field.tsx
index 99745199feebe96b7dad0ca80cb140da4c6853e2..c5a5071fb8aa44a8a8d6a08f79d9ae97f48ecb86 100644 (file)
@@ -28,11 +28,13 @@ const connectVocabularyAndPropertyKey = compose(
 
 export const PropertyValueField = connectVocabularyAndPropertyKey(
     ({ skipValidation, ...props }: PropertyValueFieldProps) =>
+        <span data-cy='property-field-value'>
         <Field
             name={PROPERTY_VALUE_FIELD_NAME}
             component={PropertyValueInput}
             validate={skipValidation ? undefined : getValidation(props)}
             {...props} />
+        </span>
 );
 
 const PropertyValueInput = ({ vocabulary, propertyKey, ...props }: WrappedFieldProps & PropertyValueFieldProps) =>