File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
extensions/ql-vscode/src/view/results Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export function AlertTableHeader({
4545 < th colSpan = { 2 } > </ th >
4646 < th
4747 className = { `${ sortClass ( ) } vscode-codeql__alert-message-cell` }
48- colSpan = { 3 }
48+ colSpan = { 4 }
4949 onClick = { toggleSortStateForColumn }
5050 >
5151 Message
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ export function AlertTablePathNodeRow(props: Props) {
8686 "[no location]"
8787 ) }
8888 </ td >
89+ < td { ...selectableZebraStripe ( isSelected , zebraIndex ) } > { "model" } </ td >
8990 < td
9091 { ...selectableZebraStripe (
9192 isSelected ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export function AlertTablePathRow(props: Props) {
6161 expanded = { currentPathExpanded }
6262 onClick = { handleDropdownClick }
6363 />
64- < td className = "vscode-codeql__text-center" colSpan = { 3 } >
64+ < td className = "vscode-codeql__text-center" colSpan = { 4 } >
6565 Path
6666 </ td >
6767 </ tr >
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ export function AlertTableResultRow(props: Props) {
9090 { result . codeFlows === undefined ? (
9191 < >
9292 < td className = "vscode-codeql__icon-cell" > { info } </ td >
93- < td colSpan = { 3 } > { msg } </ td >
93+ < td colSpan = { 4 } > { msg } </ td >
9494 </ >
9595 ) : (
9696 < >
@@ -99,7 +99,7 @@ export function AlertTableResultRow(props: Props) {
9999 onClick = { handleDropdownClick }
100100 />
101101 < td className = "vscode-codeql__icon-cell" > { listUnordered } </ td >
102- < td colSpan = { 2 } > { msg } </ td >
102+ < td colSpan = { 3 } > { msg } </ td >
103103 </ >
104104 ) }
105105 < td className = "vscode-codeql__location-cell" >
You can’t perform that action at this time.
0 commit comments