-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1121 from HubSpot/new_task_search
React/redux Task Search
- Loading branch information
Showing
23 changed files
with
486 additions
and
532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,3 @@ let TaskStateLabel = React.createClass({ | |
}); | ||
|
||
export default TaskStateLabel; | ||
|
55 changes: 0 additions & 55 deletions
55
SingularityUI/app/components/common/formItems/DateEntry.jsx
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
SingularityUI/app/components/common/formItems/ReduxSelect.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from 'react'; | ||
import Select from 'react-select'; | ||
|
||
// Wrapper for react-select for use with redux form. Needs to override onBlur of react-select | ||
// More info: https://github.com/erikras/redux-form/issues/82 | ||
export default (props) => { | ||
return ( | ||
<Select | ||
{...props} | ||
onBlur={_.noop} | ||
/> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 0 additions & 112 deletions
112
SingularityUI/app/components/taskSearch/DisplayResults.jsx
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.