File tree Expand file tree Collapse file tree
extensions/ql-vscode/src/remote-queries/view Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -206,13 +206,6 @@ const FileCodeSnippet = ({
206206 < CodeContainer >
207207 { code . map ( ( line , index ) => (
208208 < div key = { index } >
209- { message && severity && < Message
210- message = { message }
211- currentLineNumber = { startingLine + index }
212- highlightedRegion = { highlightedRegion }
213- borderColor = { getSeverityColor ( severity ) } >
214- { messageChildren }
215- </ Message > }
216209 < Box display = "flex" >
217210 < Box
218211 p = { 2 }
@@ -238,6 +231,13 @@ const FileCodeSnippet = ({
238231 highlightedRegion = { highlightedRegion } />
239232 </ Box >
240233 </ Box >
234+ { message && severity && < Message
235+ message = { message }
236+ currentLineNumber = { startingLine + index }
237+ highlightedRegion = { highlightedRegion }
238+ borderColor = { getSeverityColor ( severity ) } >
239+ { messageChildren }
240+ </ Message > }
241241 </ div >
242242 ) ) }
243243 </ CodeContainer >
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ const AnalysesResultsDescription = ({
260260 const showMaxResultsMessage = analysesResults . some ( a => a . rawResults ?. capped ) ;
261261 const maxRawResultsMessage = < >
262262 < VerticalSpace size = { 1 } />
263- Some repositories have more than { MAX_RAW_RESULTS } results. We will only show you up to
263+ Some repositories have more than { MAX_RAW_RESULTS } results. We will only show you up to
264264 { MAX_RAW_RESULTS } results for each repository.
265265 </ > ;
266266
You can’t perform that action at this time.
0 commit comments