sw-clough

Results 7 comments of sw-clough

I am in need of this functionality. As an example of what I am trying to do, I have route `foo` that shows the title and has tabs for the...

I don't have time to review this `.d.ts` file thoroughly, but I did quickly compare it to a version I have been using locally, and I noticed a few differences....

Sorry, hadn't had time to review your response until now. Regarding the choice you presented, I hadn't thought about it. If you have an error page with parameters in the...

So after thinking about it more, I like the idea of showing the error at the problem URL, without a redirect. So now I have implemented a helper function to...

> What I do in a several apps is watch for error events, and then based on the error I may do some business logic, go to a different route,...

In proto3, all fields are "optional", see https://github.com/protocolbuffers/protobuf/issues/2497#issuecomment-267422550 So the optional property is required for the pbts generated model to match the proto3 definition. This, however, is not ideal as...

> which is proto3's philosophy: `Foo.a` being unset is the same as `Foo.a` being set to zero (the default scalar value for int32) I don't think so. My link states...