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 has been 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).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
If I autocomplete on this I probably want
type
orpayload
, but flow will present me withhasOwnProperty
,isPrototypeOf
, etc.. andtype
will be one of the last available options (sorted alphabetically).The text was updated successfully, but these errors were encountered: