Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lot of Warnings with latest react-bootstrap release #16

Open
martinwh99 opened this issue Apr 28, 2016 · 1 comment
Open

Lot of Warnings with latest react-bootstrap release #16

martinwh99 opened this issue Apr 28, 2016 · 1 comment

Comments

@martinwh99
Copy link

image

here is the code:

<FormGroup className="form-col-text-field">
                                                <Row>
                                                      <Col lg={3}className="form-col-label-right">
                                                            <ControlLabel>Language</ControlLabel>
                                                      </Col>
                                                      <Col lg={9} className="form-col-text-field">
                                                            <BootstrapSelect id="language" className="form-col-select" onChange={this.handleChange.bind(this)} >
                                                                  <optgroup>
                                                                        {languages.map(lang =>(lang.sortTop==true?
                                                                              <option key={lang.langCode} value={lang.langCode}>{lang.language}</option>
                                                                              :null)
                                                                        )};
                                                                  </optgroup>
                                                                  <optgroup>
                                                                        {languages.map(lang =>(lang.sortTop==false||lang.sortTop==undefined?
                                                                              <option key={lang.langCode} value={lang.langCode}>{lang.language}</option>
                                                                              :null)
                                                                        )};
                                                                  </optgroup>
                                                            </BootstrapSelect>
                                                      </Col>
                                                </Row>
                                          </FormGroup>

and this is how the react looks like

image

I'm also wondering where these ok signs come from:

image

@WaylandAce
Copy link

Partly fixed in #20

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants