diff -r 906a6c7c7943 -r 6f3078f7fd47 client/src/components/SessionForm.js --- a/client/src/components/SessionForm.js Tue Aug 01 12:20:14 2017 +0200 +++ b/client/src/components/SessionForm.js Thu Aug 03 09:44:37 2017 +0200 @@ -27,7 +27,9 @@ onGroupChange = (e) => { const groupName = e.target.value; - this.props.sessionsActions.updateSession(this.props.currentSession, { group: groupName }); + const group = this.props.groups.find((g) => g.get('name') === groupName); + + this.props.sessionsActions.updateSession(this.props.currentSession, { group: groupName, protocol: group?group.get('protocol'):'' }); } componentWillUpdate = (nextProps, nextState) => {