Linting fixes to improve quality report
This commit is contained in:
@@ -149,7 +149,7 @@ EntitlementForm.propTypes = {
|
||||
|
||||
EntitlementForm.defaultProps = {
|
||||
entitlement: {
|
||||
uuid:'',
|
||||
uuid: '',
|
||||
courseUuid: '',
|
||||
created: '',
|
||||
modified: '',
|
||||
@@ -158,7 +158,7 @@ EntitlementForm.defaultProps = {
|
||||
orderNumber: '',
|
||||
supportDetails: [],
|
||||
user: '',
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
export default EntitlementForm;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { formActions, entitlementActions } from '../constants/actionTypes';
|
||||
import { formTypes } from '../constants/formTypes'
|
||||
import { formTypes } from '../constants/formTypes';
|
||||
const clearFormState = {
|
||||
formType: '',
|
||||
isOpen: false,
|
||||
|
||||
@@ -83,9 +83,9 @@ function LoggedInUser({ userInformation, setErrorState, zendeskApiHost, submitFo
|
||||
|
||||
{/* TODO file uploading will be done after initial release */}
|
||||
{/* <FileUpload */}
|
||||
{/* setErrorState={setErrorState} */}
|
||||
{/* zendeskApiHost={zendeskApiHost} */}
|
||||
{/* accessToken={accessToken} */}
|
||||
{/* setErrorState={setErrorState} */}
|
||||
{/* zendeskApiHost={zendeskApiHost} */}
|
||||
{/* accessToken={accessToken} */}
|
||||
{/* /> */}
|
||||
|
||||
<div className="row">
|
||||
|
||||
@@ -51,7 +51,7 @@ class RenderForm extends React.Component {
|
||||
|
||||
data.requester = {
|
||||
email: $userInfo.data('email'),
|
||||
name: $userInfo.data('username')
|
||||
name: $userInfo.data('username'),
|
||||
};
|
||||
|
||||
course = $course.find(':selected').val();
|
||||
|
||||
Reference in New Issue
Block a user