Render bug for GroupedObservables
Consider the following query:
Enumerable.Range(0, 20).ToObservable().GroupBy(x => x % 5 == 0)
Everything renders fine:
However, if the key is an object, then it get's a bit wonky.
Enumerable.Range(0, 20).ToObservable().GroupBy(x => new { Key = x % 5 == 0 })
The values are appended to the key, rather than the results.
Comments
Thanks - this should now be fixed in 7.3.4.