Skip to content

Commit 3ed3d23

Browse files
committed
Removes icons next to title in run and editor
1 parent 8ab89de commit 3ed3d23

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/components/Editor/PipelineDetails.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Frown, Network } from "lucide-react";
1+
import { Frown } from "lucide-react";
22
import { useEffect, useState } from "react";
33

44
import { PipelineValidationList } from "@/components/Editor/components/PipelineValidationList/PipelineValidationList";
@@ -134,7 +134,6 @@ const PipelineDetails = () => {
134134
>
135135
{/* Header */}
136136
<div className="flex items-center gap-2 max-w-[90%]">
137-
<Network className="w-6 h-6 text-secondary-foreground rotate-270 min-w-6 min-h-6" />
138137
<CopyText className="text-lg font-semibold" alwaysShowButton>
139138
{componentSpec.name ?? "Unnamed Pipeline"}
140139
</CopyText>

src/components/PipelineRun/RunDetails.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Frown, Videotape } from "lucide-react";
1+
import { Frown } from "lucide-react";
22

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

0 commit comments

Comments
 (0)