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 <105648914+ovidiupopa07@users.noreply.github.com>
(cherry picked from commit fd55cf1)
  • Loading branch information
christosarvanitis authored and mergify[bot] committed Apr 16, 2024
1 parent 20d6ca8 commit 1809bed
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 1809bed

Please sign in to comment.