- 
                Notifications
    You must be signed in to change notification settings 
- Fork 125
Description
Using v2.8.3 from npm. Using a basic-select works functionally in all the ways that i need, except that when searching the custom attribute is being applied in the order of the whole options array, not the subset from searching.
eg: i have an app selector, and the platform icon display properly, however when searching, the top element ALWAYS has the icon from the first element in the complete array, not the searched subset
in my example the first app is a html5 webapp, and i search for an android app by name, but it has the html5 icon.
heres my basic select code
    <basic-select :customAttr="customAppAttributeFunc" :options="apps" :selected-option="selectedApp" @select="selectApp" placeholder="Select an App" > </basic-select>
and here's the custom app attribute function. the value for each option is a complex object with a platform attribute that is a string
  customAppAttributeFunc (item) { if (item.value && item.value.platform) { return item.value.platform } return '' }



