-
Notifications
You must be signed in to change notification settings - Fork 672
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Figure out validation / default value implementation for JS #29
Labels
enhancement
New feature or request
spec-first
This issue needs a spec to be created and then work. It should be an independent stream
ui
Admin console user interface
Comments
schottra
added
enhancement
New feature or request
spec-first
This issue needs a spec to be created and then work. It should be an independent stream
and removed
Compliance
pri2
labels
Jul 6, 2020
Bug bankruptcy. |
eapolinario
referenced
this issue
in eapolinario/flyte
Dec 6, 2022
eapolinario
referenced
this issue
in eapolinario/flyte
Dec 20, 2022
* Work in progress: Generic Stowstore * Simplifying to use only stowstore * added missing functions * removing deleted reference * Updated pflags * Fixed
eapolinario
referenced
this issue
in eapolinario/flyte
Dec 20, 2022
eapolinario
referenced
this issue
in eapolinario/flyte
Dec 20, 2022
Signed-off-by: Yuvraj <[email protected]>
eapolinario
referenced
this issue
in eapolinario/flyte
Aug 21, 2023
* Work in progress: Generic Stowstore * Simplifying to use only stowstore * added missing functions * removing deleted reference * Updated pflags * Fixed
eapolinario
referenced
this issue
in eapolinario/flyte
Aug 21, 2023
eapolinario
referenced
this issue
in eapolinario/flyte
Aug 21, 2023
eapolinario
referenced
this issue
in eapolinario/flyte
Aug 21, 2023
Signed-off-by: Yuvraj <[email protected]>
eapolinario
referenced
this issue
in eapolinario/flyte
Aug 21, 2023
Signed-off-by: Prafulla Mahindrakar <[email protected]>
eapolinario
pushed a commit
that referenced
this issue
Sep 12, 2023
eapolinario
referenced
this issue
in eapolinario/flyte
Sep 26, 2023
eapolinario
referenced
this issue
in eapolinario/flyte
Apr 30, 2024
eapolinario
referenced
this issue
in eapolinario/flyte
Apr 30, 2024
austin362667
pushed a commit
to austin362667/flyte
that referenced
this issue
May 7, 2024
robert-ulbrich-mercedes-benz
pushed a commit
to robert-ulbrich-mercedes-benz/flyte
that referenced
this issue
Jul 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
spec-first
This issue needs a spec to be created and then work. It should be an independent stream
ui
Admin console user interface
Problem:
The messages coming back from the API are decoded by protobufjs. But since all the fields in a proto messages are optional by convention, we don't have any assurance that the records are valid and usable. This has caused errors before on the client side.
Solution options:
message as X
) or type-guarding (: message is X
) to the stricter types present on the client side. This has the advantage of being flexible in the UI requirements, and the disadvantage of being difficult to keep in sync with the protobuf source of truth.Option 3 is ideal, but the amount of work necessary to do so is concerning (especially considering it may not work correctly and we might have to back it out).
The text was updated successfully, but these errors were encountered: