diff --git a/ui/src/features/project/pipelines/nodes/repo-node.tsx b/ui/src/features/project/pipelines/nodes/repo-node.tsx index 8de963632..6cad4b70e 100644 --- a/ui/src/features/project/pipelines/nodes/repo-node.tsx +++ b/ui/src/features/project/pipelines/nodes/repo-node.tsx @@ -46,9 +46,19 @@ export const RepoNode = ({ nodeData, children }: Props) => { {nodeData.type === NodeType.WAREHOUSE && nodeData?.data?.status?.message && ( - - {nodeData?.data?.status?.message} +
+ +
{ + const msg = nodeData?.data?.status?.message; + if (msg) { + navigator.clipboard.writeText(msg); + } + }} + > + {nodeData?.data?.status?.message} +
} >