-
Notifications
You must be signed in to change notification settings - Fork 39
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
feat(): add tenant backup destType #628
base: master
Are you sure you want to change the base?
Conversation
@@ -250,6 +253,61 @@ export default function NewBackup() { | |||
/> | |||
</Form.Item> | |||
</Col> | |||
|
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.
Input form field Host
should be added to the form if destType
is not NFS
. Refer to PRD to see the details.
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 mean that a new field named Host
should be added to the form when selecting COS, OSS, S3 or S3-Compatible.
@@ -29,8 +29,11 @@ export default function NewBackup() { | |||
const scheduleValue = Form.useWatch(['scheduleDates'], form); | |||
|
|||
const distType = [ |
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.
This seems to be a typo. Maybe destTypes
is better.
}, | ||
]} | ||
> | ||
<Password |
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.
Plain text is more proper.
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.
DONE
Summary
add tenant backup destType( COS、S3、 S3-Compatible)
Solution Description