client/src/components/SessionForm.js
changeset 134 be36eed5e6e0
parent 133 6f3078f7fd47
child 135 b5aafa462956
equal deleted inserted replaced
133:6f3078f7fd47 134:be36eed5e6e0
    79               { this.props.groups.map((group, key) =>
    79               { this.props.groups.map((group, key) =>
    80                 <option key={ key } value={ group.get('name') }>{ group.get('name') }</option>
    80                 <option key={ key } value={ group.get('name') }>{ group.get('name') }</option>
    81               ) }
    81               ) }
    82             </FormControl>
    82             </FormControl>
    83           </FormGroup>
    83           </FormGroup>
    84           <FormGroup>
    84            <FormGroup>
    85             <GroupForm session={this.props.session} />
    85             <GroupForm session={this.props.session} />
    86           </FormGroup>
    86           </FormGroup>
    87         </form>
    87         </form>
    88       </Panel>
    88       </Panel>
    89     );
    89     );