Skip to content
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-7869] - Linode Create Refactor - Part 2 - Images and Distributions #10281

Merged
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d37bfa0
initial tab handling
bnussman Mar 12, 2024
da993ce
add some code comments
bnussman Mar 12, 2024
ff22162
add distribution tab
bnussman Mar 13, 2024
b3e8cdf
clean up
bnussman Mar 13, 2024
63268ec
fix console error
bnussman Mar 13, 2024
a907562
make styles match existing component
bnussman Mar 13, 2024
2efb996
wip
bnussman Mar 13, 2024
956820b
fix: extra rendering due to incorrect watch call
bnussman Mar 13, 2024
fdb1100
test and document
bnussman Mar 13, 2024
ff58cae
add a way to test with hook form context
bnussman Mar 13, 2024
638803f
Added changeset: Linode Create Refactor - Part 2 - Images and Distrib…
bnussman Mar 14, 2024
1fe6b29
clean up a lot and test more
bnussman Mar 14, 2024
4dfb984
move `font-logos` css import in hopes to defer loading till the css i…
bnussman Mar 14, 2024
4a3e081
use `history.push`
bnussman Mar 19, 2024
c2a5ab2
add basic testing for new select
bnussman Mar 19, 2024
42d6b24
Merge branch 'develop' into linode-create-v2-part-2
bnussman Mar 19, 2024
1bf9aa5
add a unit test for `ImageSelectv2`
bnussman Mar 19, 2024
5981137
fix icon size in chrome
bnussman Mar 19, 2024
556b950
follow react-hook-forms reccomendation of not using undefined
bnussman Mar 19, 2024
330c80e
Added changeset: Make `image` nullable in `CreateLinodeSchema`
bnussman Mar 19, 2024
3e48701
make `image` nullable
bnussman Mar 19, 2024
a9a25ba
allow `image` to be `null` in `CreateLinodeRequest`
bnussman Mar 19, 2024
ce23b06
Added changeset: Allow `image` to be `null` in `CreateLinodeRequest`
bnussman Mar 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix console error
  • Loading branch information
bnussman committed Mar 13, 2024
commit 63268eccb52d80835e7b71303f8f9afafd6261bf
Original file line number Diff line number Diff line change
@@ -33,6 +33,7 @@ export const ImageSelectv2 = (props: Props) => {
<ImageOptionv2
image={option}
isSelected={state.selected}
key={option.id}
listItemProps={props}
/>
)}