Skip to content

Commit

Permalink
fix a few misses
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Gilgur <[email protected]>
  • Loading branch information
Anton Gilgur committed Oct 25, 2024
1 parent b53d3e4 commit 6535ce7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/app/workflows/components/retry-workflow-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function RetryWorkflowPanel(props: Props) {

return (
<>
<h4>Retry Workflow</h4>
<h4>Retry {props.nodeId ? 'Node' : 'Workflow'}</h4>
<h5>
{props.workflow.metadata.namespace}/{props.workflow.metadata.name}
{props.nodeId ? `/${props.nodeId}` : ''}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import {SuspendInputs} from './suspend-inputs';
import {WorkflowResourcePanel} from './workflow-resource-panel';

import './workflow-details.scss';
import {RetryWorkflowNode} from '../retry-workflow-node-panel';

function parseSidePanelParam(param: string) {
const [type, nodeId, container] = (param || '').split(':');
Expand Down

0 comments on commit 6535ce7

Please sign in to comment.