Skip to content

Commit eaad677

Browse files
committed
Update stages.tsx
1 parent 9ff07d9 commit eaad677

File tree

1 file changed

+7
-11
lines changed
  • src/main/frontend/pipeline-console-view/pipeline-console/main/components

1 file changed

+7
-11
lines changed

src/main/frontend/pipeline-console-view/pipeline-console/main/components/stages.tsx

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function Stages({
4242
className={classNames("pgv-graph-view-thing", {
4343
"pgv-graph-view-thing--left":
4444
stageViewPosition === StageViewPosition.LEFT,
45-
"pgv-graph-view-thing--dialog": isExpanded
45+
"pgv-graph-view-thing--dialog": isExpanded,
4646
})}
4747
style={{ "--additional-height": sidebarHeight + "px" } as CSSProperties}
4848
>
@@ -56,18 +56,14 @@ export default function Stages({
5656
onClick={() => setIsExpanded(!isExpanded)}
5757
>
5858
{isExpanded && (
59-
<svg
60-
width="20"
61-
height="20"
62-
viewBox="0 0 20 20"
63-
fill="none"
64-
xmlns="http://www.w3.org/2000/svg"
65-
>
59+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
6660
<path
67-
d="M10 4H15C15.5523 4 16 4.44772 16 5V10M10 16H5C4.44772 16 4 15.5523 4 15V10"
68-
stroke="red"
69-
strokeWidth="1.5"
61+
fill="none"
62+
stroke="currentColor"
7063
strokeLinecap="round"
64+
strokeLinejoin="round"
65+
strokeWidth="32"
66+
d="M368 368L144 144M368 144L144 368"
7167
/>
7268
</svg>
7369
)}

0 commit comments

Comments
 (0)