### Describe the bug `b-form-select` properties `value-field` and `text-field` do not work with certain data. It will be null. ### Steps to reproduce the bug [CodeSandbox](https://codesandbox.io/s/cool-hofstadter-pp81i?file=/App.vue) ```javascript <template> <div> value: {{ value }} <b-form-select v-model="value" label-field="value" options-field="items" value-field="id" text-field="name" :options="[{ value: 'fruits', items:[ { id: 1, name: 'apple' }, { id: 2, name: 'orange' }, ] }]" /> </div> </template> <script> export default { data() { return { value: null } }, } </script> ``` ### Versions **Libraries:** - BootstrapVue: 2.12.0 - Bootstrap: 4.4.1 - Vue: 2.6.11