Skip to content

Commit 472f938

Browse files
author
Brenda Coronel
committed
Removing comments
1 parent 0924135 commit 472f938

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

packages/react/src/task/task-list.tsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { CiCircleChevDown } from "react-icons/ci";
99
import { IconButton } from "@fluentui/react/lib/Button";
1010
import { MdOutlineRunningWithErrors } from "react-icons/md";
1111
import { RiProgress1Line, RiLoader3Fill } from "react-icons/ri";
12-
//import { PagedAsyncIterableIterator } from "@azure/core-paging";
1312

1413
interface 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-
*/

0 commit comments

Comments
 (0)