Cal
Cal
I can't get this to work either.
Ok, so looking at this a bit more. It looks like if there is no code present in the original state, then it will not set the decorator. You can...
You can fix this issue by modifying line 272-273 to: ``` ids_found = re.findall(r'((?
Surely the ECS managed scaling capacity provider should decide how many instances are required (given the utilisation target, resource requirements and placement requirements) and remove all unnecessary nodes (starting with...
One way to handle this could be to pass in a function which will be called to evaluated the type: ```tsx const NodeSchema = Schema({ name: string.trim().normalize(), nodes: (self) =>...
In case it helps, this is the schema I've created. This works, but as you can see in the comments, I'm unable to use the auto-typing for `SourceFilterAndOr` as typescript...
Also, with this approach I'm unable to mark the schema as optional. ```tsx const SourceFilterSchema = (node: SourceFilter): SourceFilter => { return Schema.either( SourceFilterAndOrSchema, SourceFilterComparisonSchema, )(node) } const AltSchema =...
That looks good! I think your approach makes sense for a recursive fn. The other use case is to enable SchemaA to reference SchemaB and vice versa (as below). In...
I've also tried moving the `` outside of the dialog, but because the `` is portal-ed the form does not actually wrap the contents of the dialog. As above, I...
Hi @brentertz - thanks for the suggestion, I tried that and it does work. The only problem is that I'm using the [`informed` library](https://github.com/joepuzzo/informed#readme), which has a `` component (and...