Skip to content

Commit

Permalink
Update PlotsTab.tsx
Browse files Browse the repository at this point in the history
I  missed one simple condition ,now I have added it. This searching functionality will only work for stacked bar graphs.
  • Loading branch information
SURAJ-SHARMA27 authored Apr 16, 2024
1 parent 6cfd7c7 commit a05006d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/components/plots/PlotsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4464,7 +4464,7 @@ export default class PlotsTab extends React.Component<IPlotsTabProps, {}> {
</label>
</div>
)}
{this.isStacked && (
{this.isStacked && (this.plotType.result==3) && (
<div className="form-group">
<label style={{ margin: '0' }}>
<b>Sort</b>
Expand Down

0 comments on commit a05006d

Please sign in to comment.