Skip to content

Commit

Permalink
fix: Add link at pipeline run log list to detail page (#4220)
Browse files Browse the repository at this point in the history
fix: add link at pipeline run log list to detail page

Signed-off-by: yazhou <[email protected]>
  • Loading branch information
yazhouio authored Oct 23, 2023
1 parent 53338a8 commit f8449e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ export default class Activity extends React.Component {
width: '10%',
key: 'run',
render: record =>
record.result === 'ABORTED' || !record.result ? (
<span>{record.id}</span>
!record.id ? (
<span>-</span>
) : (
<Link className="item-name" to={this.getRunhref(record)}>
{record.id}
Expand Down

0 comments on commit f8449e3

Please sign in to comment.