Yury Michurin
Yury Michurin
@benjamingr The main problem I see, is not how to render the components, IMO, that's already done in the [HTML renderer](https://github.com/bikeshaving/crank/blob/master/src/html.ts). The problem is IMO, how to attach event handlers...
My input on this: Users length: 1426 Connections count: 1909 { 'xhr-streaming': 197, 'xhr-polling': 83, websocket: 1626, 'jsonp-polling': 3, eventsource: 0, htmlfile: 0 } netstat ESTABLISHED sockets: 4066 (i'm behind...
After seeing that issue, I've checked my app, it runs behind SSL haproxy and all the incoming connections go threw it. I've kill -9 haproxy now, and waited few minutes,...
It seems that `Network.requestWillBeSent` is not fired from CDP for the XHR in the worker... this hack “fixes” it: ``` --- a/lib/NetworkManager.js +++ b/lib/NetworkManager.js @@ -187,6 +187,7 @@ class NetworkManager...
Hi, What you guys think about something like that: https://github.com/yurynix/react-typeahead/commit/1a963818adeded7d1400e44fd521af2df4c246db It works for my scenario, I update the value in the parent component when user clicks on some buttons. I...
@jibwa You're welcome =) any1 else have any comments or should I proceed to pull req?
I had a similar scenario where I would render typehead with different value when user clicked on something, so I've made the following modification that seems to work for me:...
@barbalex I don't mind making a pull request, but I'm looking for getting some feedback first, Since I'm not yet very familiar with TypeAhead's inner stuff. Same issue discussed here:...
@smith-kyle Typeahead already has all the mechanics: finding `object` by `value`, converting `object` to display `value`, so we might as well let `Typeahead` handling choosing the right `object` by `value`...
@danieljuhl Sounds great, can you provide a link for your changes?