I am having big troubles getting the \"updated\" value of a record in an edit form. I always get the initial record values, even though I have an input linked to the right recor
I found a working solution :
import { connect } from 'react-redux';
const mapStateToProps = state => ({
recordLiveValues: state.form['record-form'].values
});
export default connect(mapStateToProps)(MyForm);
When mapping the form state to my component's properties, I'm able to find my values using :
recordLiveValues.surface