File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed
src/main/frontend/pipeline-console-view/pipeline-console/main Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 11files :
22 - source : " /src/main/resources/io/jenkins/plugins/pipelinegraphview/**/*.properties"
33 ignore :
4- - ' /src/main/resources/io/jenkins/plugins/pipelinegraphview/**/%file_name%_%two_letters_code%.properties'
4+ - " /src/main/resources/io/jenkins/plugins/pipelinegraphview/**/%file_name%_%two_letters_code%.properties"
55 translation : " /src/main/resources/io/jenkins/plugins/pipelinegraphview/**/%file_name%_%two_letters_code%.properties"
66 escape_quotes : 1
77 escape_special_characters : 0
Original file line number Diff line number Diff line change 77 useEffect ,
88 useState ,
99} from "react" ;
10+ import { Virtuoso } from "react-virtuoso" ;
1011
1112import Filter from "../../../common/components/filter.tsx" ;
1213import StatusIcon from "../../../common/components/status-icon.tsx" ;
@@ -17,8 +18,6 @@ import {
1718 StageInfo ,
1819} from "../../../pipeline-graph-view/pipeline-graph/main/PipelineGraphModel.tsx" ;
1920import { useFilter } from "./providers/filter-provider.tsx" ;
20- import { Virtuoso } from "react-virtuoso" ;
21- import { ConsoleLine } from "./ConsoleLine.tsx" ;
2221
2322export default function DataTreeView ( {
2423 stages,
@@ -94,7 +93,7 @@ export default function DataTreeView({
9493 useWindowScroll
9594 data = { filteredStages }
9695 itemContent = { ( index : number , stage : StageInfo ) => (
97- < TreeNode
96+ < TreeNode
9897 key = { stage . id }
9998 stage = { stage }
10099 selected = { String ( selected ) }
@@ -211,12 +210,14 @@ const TreeNode = memo(function TreeNode({
211210 useWindowScroll
212211 data = { stage . children }
213212 itemContent = { ( index : number , child : StageInfo ) => (
214- < TreeNode
215- key = { child . id }
216- stage = { child }
217- selected = { selected }
218- onSelect = { onSelect }
219- /> ) } />
213+ < TreeNode
214+ key = { child . id }
215+ stage = { child }
216+ selected = { selected }
217+ onSelect = { onSelect }
218+ />
219+ ) }
220+ />
220221 </ div >
221222 ) }
222223 </ div >
You can’t perform that action at this time.
0 commit comments