-
Notifications
You must be signed in to change notification settings - Fork 365
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
upcoming: [M3-7874] - Linode Create Refactor - Marketplace - Part 1 #10401
upcoming: [M3-7874] - Linode Create Refactor - Marketplace - Part 1 #10401
Conversation
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.
All for these short and sweet PRs! As long as it works for you
<Autocomplete | ||
textFieldProps={{ | ||
containerProps: { sx: { minWidth: 250 } }, | ||
hideLabel: true, | ||
}} | ||
label="Select category" | ||
options={categoryOptions} | ||
placeholder="Select category" | ||
/> |
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.
I'll try taking a look, but if I can't figure it our cleanly, I'll make a ticket for this
'Security', | ||
'Stacks', | ||
'Website', | ||
]; |
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.
Can we generate this dynamically by doing
const categories = oneClickApps.reduce((acc, app) => {
return [...acc, ...app.categories];
}, [] as string[]);
const uniqueCategories = [...new Set(categories)]
or similar?
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.
That is 1,000 IQ! π§
Pushed in 4f592f8
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.
Love the small PRs!
Coverage Report: β
|
Description π
Begins building out the Marketplace section of the new Linode Create flow ποΈ
Note
I'm going to trial to do small consumable PRs for the remainder of the Linode Create refactor. If these PRs seem too small, just let me know.
Preview π·
How to test π§ͺ
Prerequisites
Linode Create v2
feature flagVerification steps
As an Author I have considered π€