-
Notifications
You must be signed in to change notification settings - Fork 161
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
chore: hide runtime specifications select for self-hosted. #1755
base: main
Are you sure you want to change the base?
Conversation
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-03-18 18:14:32 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-03-18 18:14:33 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-03-18 18:14:31 CET |
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2025-03-18 18:14:32 CET |
required | ||
disabled={specificationOptions.length < 1} | ||
options={specificationOptions} | ||
popover={isCloud && $organization?.billingPlan === BillingPlan.FREE |
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.
already isCloud
here no?
Also lets move from doing a plan check to checking if the specification list only has one item [Free only has one]. @lohanidamodar makes sense?
required | ||
disabled={specificationOptions.length < 1} | ||
options={specificationOptions} | ||
popover={$organization?.billingPlan === BillingPlan.FREE |
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.
same as above on what we decide.
placeholder="Select runtime specification" | ||
bind:value={specification} | ||
options={specificationOptions} | ||
popover={$organization?.billingPlan === BillingPlan.FREE |
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.
same..
What does this PR do?
Hides runtime specifications selector for self-hosted.
Test Plan
Related PRs and Issues
Have you read the Contributing Guidelines on issues?
Yes.