Skip to content

Commit

Permalink
Merge branch 'develop' into chore/add_exp_design_loading_to_local_env
Browse files Browse the repository at this point in the history
  • Loading branch information
ke4 authored Nov 23, 2023
2 parents 778ec3c + e340fa2 commit 7b671f0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ class TSnePlotViewRoute extends React.Component {
plotTypeDropdown={plotTypeDropdown}
selectedPlotOptionLabel={search.plotOption ?
search.plotType ?
Object.keys(_find(plotTypeDropdown,
(plot) => plot.plotType.toLowerCase() === search.plotType).plotOptions[0])[0] + `: ` + search.plotOption
Object.keys(plotTypeDropdown[plotTypeDropdown.findIndex(
(plot) => plot.plotType.toLowerCase() === search.plotType.toLowerCase())].plotOptions[0])[0] + `: ` + search.plotOption
:
Object.keys(_find(plotTypeDropdown,
(plot) => plot.plotType.toLowerCase() === this.state.selectedPlotType).plotOptions[0])[0] + `: ` + search.plotOption
Object.keys(plotTypeDropdown[plotTypeDropdown.findIndex(
(plot) => plot.plotType.toLowerCase() === this.state.selectedPlotType.toLowerCase())].plotOptions[0])[0] + `: ` + search.plotOption
:
this.state.selectedPlotOptionLabel}
onChangePlotTypes={
Expand Down

0 comments on commit 7b671f0

Please sign in to comment.