File tree Expand file tree Collapse file tree
extensions/ql-vscode/src/view/results Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import { AlertTableHeader } from "./AlertTableHeader";
2222import { SarifMessageWithLocations } from "./locations/SarifMessageWithLocations" ;
2323import { SarifLocation } from "./locations/SarifLocation" ;
2424import { EmptyQueryResultsMessage } from "./EmptyQueryResultsMessage" ;
25+ import TextButton from "../common/TextButton" ;
2526
2627type AlertTableProps = ResultTableProps & {
2728 resultSet : InterpretedResultSet < SarifInterpretationData > ;
@@ -73,13 +74,9 @@ export class AlertTable extends React.Component<
7374 return (
7475 < span >
7576 No Alerts. See{ " " }
76- { /*
77- eslint-disable-next-line
78- jsx-a11y/anchor-is-valid,
79- */ }
80- < a href = "#" onClick = { this . props . showRawResults } >
77+ < TextButton onClick = { this . props . showRawResults } >
8178 raw results
82- </ a >
79+ </ TextButton >
8380 .
8481 </ span >
8582 ) ;
You can’t perform that action at this time.
0 commit comments