Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1357 from Netflix/feature/stop-initial-loading-of…
Browse files Browse the repository at this point in the history
…-ui-tables

added preload when a search query or workflow type has been filled in
  • Loading branch information
apanicker-nflx committed Oct 15, 2019
2 parents 9d409e4 + ba0a936 commit 0994830
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ui/src/components/workflow/executions/WorkflowSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ class WorkflowSearch extends Component {
// update the state
changeSearch(search);

if(search !== null && (search.query !== "" || search.types.length !== 0)){
fetchSearchResults()
}

// fetch workflow types
getWorkflowDefs();
}
Expand Down

0 comments on commit 0994830

Please sign in to comment.