Zach Wentz

Results 18 comments of Zach Wentz

I tried this myself, doesn't appear to resolve the issue. from `ember g --help` ``` ember-cli-coffeescript: acceptance-test Generates an acceptance test for a feature. adapter Generates an ember-data adapter. --base-class...

It's a conflict between emblem and coffeescript. They both override the same generator, and it depends on which is defined lower in package.json, for which takes precedence. On Mon, Jan...

Sure thing, I haven't found a workaround myself, but then again I haven't looked hard either, at the moment I just run `mv ....{hbs,emblem}`, after each generate command.

@lucafalasco I can take a crack at this, do you have some guidance on where to start? My initial approach would be to, if you passed the appropriate prop for...

Quick update @lucafalasco: I've looked at this more closely and I have an approach (PR to come this weekend). The approach is for, if a prop is passed (I'm assuming...

Ahh, great point, I only really need the flag and the additional listeners because of the timeout. Even less invasive! Okay, PR coming soon.

Love that idea, the personalizing of the bot in that way would definitely de-prioritize the need to have a default assigned team member as the convo initiate / prompt.

Thanks very much @reichert621, keep up the good work! This is much appreciated.

I'm using React Native Elements' Input element, and they use a ref to forward `clear()`, `focus()` etc to their Input wrapper component: https://github.com/react-native-elements/react-native-elements/blob/next/src/input/Input.tsx#L161 I pass in the `DateTimePicker` component to...