Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
debuggy committed Jul 7, 2020
1 parent 0f0b904 commit 23a4a28
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,21 +355,6 @@ export default class TaskRoleContainerList extends React.Component {
);
},
},
{
key: 'completionTime',
name: 'Completion Time',
headerClassName: FontClassNames.medium,
minWidth: 150,
maxWidth: 200,
isResizable: true,
onRender: item => {
return (
<div className={c(FontClassNames.mediumPlus)}>
{printDateTime(DateTime.fromMillis(item.completedTime))}
</div>
);
},
},
{
key: 'currentAttemptLaunchedTime',
name: 'Current Attempt Launched Time',
Expand Down Expand Up @@ -404,6 +389,21 @@ export default class TaskRoleContainerList extends React.Component {
);
},
},
{
key: 'completionTime',
name: 'Completion Time',
headerClassName: FontClassNames.medium,
minWidth: 150,
maxWidth: 200,
isResizable: true,
onRender: item => {
return (
<div className={c(FontClassNames.mediumPlus)}>
{printDateTime(DateTime.fromMillis(item.completedTime))}
</div>
);
},
},
{
key: 'nodeName',
name: 'Node Name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ export default class TaskRole extends React.Component {
{/* right */}
<Stack horizontal verticalAlign='end' gap='s1'>
<Toggle
onText='Diagnosis Information'
offText='Diagnosis Information'
onText='More Diagnostics'
offText='More Diagnostics'
onChange={(event, checked) => {
this.setState({
showDebugInfo: checked,
Expand Down

0 comments on commit 23a4a28

Please sign in to comment.