openreplay/frontend/app/components/Client/Integrations/JiraForm/JiraForm.js
2021-05-01 15:12:01 +05:30

27 lines
No EOL
549 B
JavaScript

import IntegrationForm from '../IntegrationForm';
const JiraForm = (props) => (
<IntegrationForm
{ ...props }
ignoreProject={true}
name="issues"
customPath="jira"
formFields={[ {
key: "username",
label: "Username",
autoFocus: true
}, {
key: "token",
label: "API Token",
}, {
key: "url",
label: "JIRA URL",
placeholder: 'E.x. https://myjira.atlassian.net'
},
]}
/>
);
JiraForm.displayName = "JiraForm";
export default JiraForm;