dash-core-components==0.18.1 According to this, the label element should have a `key` attribute containing `option.value` https://github.com/plotly/dash-core-components/blob/master/src/components/RadioItems.react.js#L42 This is how it's actually rendered for me in Chrome and FF: ```html <div id="radio_y"> <label class="yo"> <!-- actual --> <input type="radio" class="" value="on"> <!-- react-text: 7005 --> mean_fit_time <!-- /react-text --> </label> </div> ``` That's what I`d have expected: ```html <div id="radio_y"> <label class="yo" key="mean_fit_time"> <!-- expected --> <input type="radio" class="" value="on"> <!-- react-text: 7005 --> mean_fit_time <!-- /react-text --> </label> </div> ``` Do you have an idea what could cause that?
dash-core-components==0.18.1
According to this, the label element should have a
keyattribute containingoption.valuehttps://github.com/plotly/dash-core-components/blob/master/src/components/RadioItems.react.js#L42
This is how it's actually rendered for me in Chrome and FF:
That's what I`d have expected:
Do you have an idea what could cause that?