Skip to content

Commit

Permalink
fix(runJobs): Persist External Log links after the deletion of the po…
Browse files Browse the repository at this point in the history
…ds (#10081)

* fix(runJobs): Persist External Log links after the deletion of the pods

* fix(runJobs): Persist External Log links after the deletion of the pods

---------

Co-authored-by: ovidiupopa07 <[email protected]>
  • Loading branch information
christosarvanitis and ovidiupopa07 committed Apr 16, 2024
1 parent a7c6ec6 commit fd55cf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/manifest/stage/JobStageExecutionLogs.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isEmpty, template } from 'lodash';
import { template } from 'lodash';
import React from 'react';
import { from as observableFrom, Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
Expand Down Expand Up @@ -52,7 +52,7 @@ export class JobStageExecutionLogs extends React.Component<IJobStageExecutionLog
const { manifest } = this.state;
const { externalLink, podNamesProviders, location, account } = this.props;
// prefer links to external logging platforms
if (!isEmpty(manifest) && externalLink) {
if (externalLink) {
return (
<a target="_blank" href={this.renderExternalLink(externalLink, manifest)}>
Console Output (External)
Expand Down

0 comments on commit fd55cf1

Please sign in to comment.