-
Notifications
You must be signed in to change notification settings - Fork 887
feat: add all safe experiments to the deployment page #10276
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
Conversation
{isEnabled && ( | ||
<CheckCircleOutlined | ||
sx={{ | ||
width: 16, | ||
height: 16, | ||
color: (theme) => theme.palette.success.light, | ||
margin: (theme) => theme.spacing(0, 1), | ||
}} | ||
/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah! I like the design you've added above. I'll throw both in Slack and see what folks think.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks really good overall! Just had some suggestions, with one potentially having ramifications for the render behavior
If someone uses Also @bpmct what do you think about having a docs page on experiments that should at minimum, link to the experiment docs or describe what this experiment does? |
@matifali Yup! We list all experiments as being opted into if |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TypeScript looks good to me! I can't comment on the Go code, but if @Emyrk didn't raise any issues from his review, I'm sure this PR is good to go
resolves #8978
Experiments will only appear in this list if they are safe to opt into.
I considered changing the response to the
experiments
endpoint, but it resulted in way more code and since there's been some back and forth about this feature I figured we'd just go with the simplest approach (a query param).