Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Sep 4, 2024
1 parent 9a8ae0d commit f5dfbb0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions src/app/Workflows/Pipelines/PipelineRuns/TaskExecutions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Workflows } from '@tapis/tapisui-hooks';
import { SectionMessage } from '@tapis/tapisui-common';
import { QueryWrapper } from '@tapis/tapisui-common';
import { Table } from 'reactstrap';
import styles from "./TaskExecutions.module.scss"
import styles from './TaskExecutions.module.scss';

type TaskExecutionsProps = {
groupId: string;
Expand Down Expand Up @@ -53,8 +53,16 @@ const TaskExecutions: React.FC<TaskExecutionsProps> = ({
<td>{taskExecution.status}</td>
<td>{taskExecution.started_at || 'unknown'}</td>
<td>{taskExecution.last_modified || 'unknown'}</td>
<td><div className={styles["logs"]}>{taskExecution.stdout}</div></td>
<td><div className={styles["logs"]}>{taskExecution.stderr}</div></td>
<td>
<div className={styles['logs']}>
{taskExecution.stdout}
</div>
</td>
<td>
<div className={styles['logs']}>
{taskExecution.stderr}
</div>
</td>
</tr>
</tbody>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const PipelineRunSummary: React.FC<
styles[`run-status-icon-${status}`]
}`}
>
<div className={styles["fancy"]}/>
<div className={styles['fancy']} />
</div>
{children}
</div>
Expand Down

0 comments on commit f5dfbb0

Please sign in to comment.