Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/components/Editor/PipelineDetails.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Frown, Network } from "lucide-react";
import { Frown } from "lucide-react";
import { useEffect, useState } from "react";

import { PipelineValidationList } from "@/components/Editor/components/PipelineValidationList/PipelineValidationList";
Expand Down Expand Up @@ -134,7 +134,6 @@ const PipelineDetails = () => {
>
{/* Header */}
<div className="flex items-center gap-2 max-w-[90%]">
<Network className="w-6 h-6 text-secondary-foreground rotate-270 min-w-6 min-h-6" />
<CopyText className="text-lg font-semibold" alwaysShowButton>
{componentSpec.name ?? "Unnamed Pipeline"}
</CopyText>
Expand Down
3 changes: 1 addition & 2 deletions src/components/PipelineRun/RunDetails.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Frown, Videotape } from "lucide-react";
import { Frown } from "lucide-react";

import { CopyText } from "@/components/shared/CopyText/CopyText";
import { Spinner } from "@/components/ui/spinner";
Expand Down Expand Up @@ -84,7 +84,6 @@ export const RunDetails = () => {
return (
<div className="p-2 flex flex-col gap-6 h-full">
<div className="flex items-center gap-2 max-w-[90%]">
<Videotape className="w-6 h-6 text-gray-500" />
<CopyText className="text-lg font-semibold" alwaysShowButton>
{componentSpec.name ?? "Unnamed Pipeline"}
</CopyText>
Expand Down