-
Notifications
You must be signed in to change notification settings - Fork 108
feat(instances) - distance backup lot 1 light #19751
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
base: master
Are you sure you want to change the base?
Conversation
c122414
to
daf2414
Compare
…tatus ref: #TAPC-3055 Signed-off-by: Adrien Turmo <[email protected]>
…kform + zod) ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
… input validation for zod ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
…new custom form fields ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
…odal to include distant backup ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
daf2414
to
a6ad1ee
Compare
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.
few questions ;)
packages/manager/apps/pci-instances/src/data/hooks/instance/action/useInstanceBackupPrice.tsx
Show resolved
Hide resolved
…pAvailable ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
<Text>{label}</Text> | ||
|
||
{badges && badges.length && ( | ||
<span className={'ml-4 flex flex-row gap-2 flex-wrap'}> |
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.
<span className={'ml-4 flex flex-row gap-2 flex-wrap'}> | |
<span className='ml-4 flex flex-row gap-2 flex-wrap'> |
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.
fixed
</div> | ||
<Wrapper> | ||
<div id={id} className="px-8 pt-6 pb-10"> | ||
<div id={id}> |
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.
chore: two <div>
with the same id
will generate problems in the DOM.
suggestion: To avoid div soup you can use a <section>
tag since it contains a heading inside.
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.
fixed
continents, | ||
}: { | ||
projectId: string; | ||
continents: ReturnType<typeof useInstanceBackupPrice>['distantContinents']; |
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.
suggestion: do not couple this type from a hook from a very distant folder and considerate to have a type for this
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.
fixed
… distantContinents type ref: #TAPC-3053 Signed-off-by: Adrien Turmo <[email protected]>
ref: #TAPC-3053, #TAPC-3055