You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2020. It is now read-only.
When autocompleting on objects, flow will show all possible options in alphabetical ordering.
Most of the times users are interested in the properties they defined on the object and not ALL existing properties. It would be useful to sort these to reflect this.
For example, considering the following object:
type Action = {type: string, payload: any}
If I autocomplete on this I probably want type or payload, but flow will present me with hasOwnProperty, isPrototypeOf, etc.. and type will be one of the last available options (sorted alphabetically).