Skip to content

Commit

Permalink
fix(extension):Fix reset filter link #1877 (#2136)
Browse files Browse the repository at this point in the history
* reset filter fix

* css fix

---------

Co-authored-by: Tom Brunet <thbrunet@us.ibm.com>
  • Loading branch information
nam-singh and tombrunet authored Jan 2, 2025
1 parent de7c45d commit 6946ed2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export class ReportSection extends React.Component<ReportSectionProps, ReportSec
<Button
kind="tertiary"
disabled={totalCount === 0}
style={{ float: "right", minHeight: "18px", maxHeight: "32px", minWidth: "10rem" }}
style={{ float: "right", minHeight: "18px", maxHeight: "32px", minWidth: "10rem", alignItems: "center" }}
onClick={() => this.devtoolsController.exportXLS("last") }
>Export XLS</Button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -578,10 +578,8 @@ export class ReportTreeGrid<RowType extends IRowGroup> extends React.Component<R
}}
>turn off focus view</Link>, <Link
inline={true}
onClick={() => {
this.props.onResetFilters;
}}
>select all issue types</Link>, and do not filter hidden issues.
onClick={()=>this.props.onResetFilters() }
>reset the filters</Link>, and do not filter hidden issues.
</div>
} else {
// Calculate all of the show/hide/checked states
Expand Down

0 comments on commit 6946ed2

Please sign in to comment.