Skip to content

Commit

Permalink
Fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
drjoho committed Apr 15, 2024
1 parent b853e75 commit 4a0283e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export class ScanSection extends React.Component<{}, ScanSectionState> {

<div style={{ flex: "1 1 1" }} className={totalCount === 0 ? "totalCountDisable" : "totalCountEnable"} >
{["Violation", "Needs review", "Recommendation"].map((levelStr) => {
totalCount += filterCounts[levelStr as eLevel].total;
// totalCount += filterCounts[levelStr as eLevel].total;
return <>
<span className='scanFilterSection' data-tip style={{ marginRight: "1rem", display: "inline-block", verticalAlign: "middle", paddingTop: "4px" }}>
<span className="countCol">
Expand Down Expand Up @@ -499,7 +499,7 @@ export class ScanSection extends React.Component<{}, ScanSectionState> {
let appController = getDevtoolsAppController();
getDevtoolsAppController().setSecondaryView("summary");
appController.openSecondary("totalIssuesCount");
}}><span style={{whiteSpace: "nowrap"}}>{quickTotalCount} issues found</span></Link>
}}><span style={{whiteSpace: "nowrap"}}>{totalCount} issues found</span></Link>
</div>
</div>
</Column>
Expand Down

0 comments on commit 4a0283e

Please sign in to comment.