Nic Dobbins
Nic Dobbins
For people using the current version of [create-react-app](https://github.com/facebook/create-react-app) nullish coalescing is a problem as well, @kristw and @domoritz. In order to get react-vega to work without ejecting I had to...
Looks like there may be a typo in "AllowAllAuthenicatedUsers": true", where `Authenticated` is missing the second "t". Could that be the issue? The `AllowAllAuthenticatedUsers` property is not required so if...
Hi @jnothman, Ah the `WITH` may be the issue, which would result in an invalid SQL statement. Leaf [wraps your SQL statement in a CTE already](https://github.com/uwrit/leaf/blob/master/src/server/Model/Compiler/SqlServer/DatasetSqlCompiler.cs#L50), where the `dataset` parameter...
@jnothman, can you check your logs for an entry with a message like ["Compiled dataset execution context:"](https://github.com/uwrit/leaf/blob/master/src/server/Model/Cohort/DatasetProvider.cs#L93)? You should be able to find the SQL statement under `Properties`.`Context`.`CompiledQuery`.
I tend to agree - in fact, in early versions of Leaf the default was indeed "Anytime". The issue we ran into was that for potentially very large datasets (e.g.,...
This is a great point regarding usability, thanks @jnothman. Currently the web client only listens for mouse clicks, rather than keyboard events. I'll add as an enhancement.
These are great points, @jnothman. I'm actually quite open to re-imagining / expanding the functionality of Timelines so as to make it flexible and viewable in many other ways. The...
@am202 I think this is a great idea. This also relates to requests we've gotten to make certain demographics fields optional rather than all required, as they are currently. We...
Yes, that's where I would start as well, @jnothman. If you run into other issues with this please let us know.
Nice work @ElevnLi and @jnothman! We'd love to work these changes in upstream. How about adding in something like: ```json "Authorization": { "Mechanism": "UNSECURED", "AllowAllAuthenticatedUsers": true, "UnsecuredIsAdmin": false, ... ```