File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import { CiCircleChevDown } from "react-icons/ci";
99import { IconButton } from "@fluentui/react/lib/Button" ;
1010import { MdOutlineRunningWithErrors } from "react-icons/md" ;
1111import { RiProgress1Line , RiLoader3Fill } from "react-icons/ri" ;
12- //import { PagedAsyncIterableIterator } from "@azure/core-paging";
1312
1413interface TaskListProps {
1514 pagedTasks : any ;
@@ -71,7 +70,6 @@ const columns: DataGridColumn[] = [
7170 minWidth : 150 ,
7271 maxWidth : 200 ,
7372 onRender : ( task : any ) => {
74- console . log ( task . exitConditions ) ;
7573 return (
7674 < div >
7775 { task . state . toLowerCase ( ) === "completed" ? (
@@ -121,7 +119,6 @@ const columns: DataGridColumn[] = [
121119 label : "Exit code" ,
122120 prop : "exitCode" ,
123121 minWidth : 150 ,
124- maxWidth : 200 ,
125122 onRender : ( task : any ) => {
126123 return < div > { task . exitConditions } </ div > ;
127124 } ,
@@ -141,13 +138,3 @@ const columns: DataGridColumn[] = [
141138 } ,
142139 } ,
143140] ;
144- /**
145- <IconButton
146- name=""
147- iconProps={}
148- />
149-
150-
151- Retry count: {task.executionInfo.retryCount} {"\n"}
152- Requeue count: {task.executionInfo.requeueCount}
153- */
You can’t perform that action at this time.
0 commit comments