Skip to content

Commit

Permalink
Fixed conflicting data type assignments (#8487)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersoncasimir authored Mar 30, 2023
1 parent 8d1206e commit a2ff03c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jsx/StaticDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ StaticDataTable.propTypes = {
hiddenHeaders: PropTypes.array,
DisableFilter: PropTypes.bool,
NoDynamicTable: PropTypes.bool,
freezeColumn: PropTypes.bool,
freezeColumn: PropTypes.string,
RowNameMap: PropTypes.string,
Filter: PropTypes.object,
};
Expand Down
2 changes: 1 addition & 1 deletion modules/#/jsx/#Index.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class Login extends Component {
<FormElement
name={'loginIndex'}
action={''}
fileUpload={'false'}
fileUpload={false}
onSubmit={this.handleSubmit}
>
<TextboxElement
Expand Down
2 changes: 1 addition & 1 deletion modules/#/jsx/passwordExpiry.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class PasswordExpired extends Component {
name={'passwordExpiry'}
action={''}
id={'form'}
fileUpload={'false'}
fileUpload={false}
onSubmit={this.handleSubmit}
>
<PasswordElement
Expand Down
2 changes: 1 addition & 1 deletion modules/#/jsx/requestAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class RequestAccount extends Component {
name={'requestAccount'}
action={''}
id={'form'}
fileUpload={'false'}
fileUpload={false}
onSubmit={this.handleSubmit}
>
<StaticElement
Expand Down
2 changes: 1 addition & 1 deletion modules/#/jsx/resetPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class ResetPassword extends Component {
name={'resetPassword'}
action={''}
id={'form'}
fileUpload={'false'}
fileUpload={false}
onSubmit={this.handleSubmit}
>
<StaticElement
Expand Down

0 comments on commit a2ff03c

Please # to comment.