Skip to content

Commit

Permalink
Merge branch 'cz/ui-uplift' of https://github.com/langflow-ai/langflow
Browse files Browse the repository at this point in the history
…into cz/ui-uplift
  • Loading branch information
Cristhianzl committed Oct 25, 2024
2 parents acc8fef + afb7afd commit d7e0f43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/frontend/src/CustomNodes/GenericNode/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ export default function GenericNode({
<ForwardedIconComponent
name={showHiddenOutputs ? "EyeOff" : "Eye"}
strokeWidth={1.5}
className="text-placeholder-foreground h-4 w-4 group-hover:text-foreground"
className="h-4 w-4 text-placeholder-foreground group-hover:text-foreground"
/>
</Button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const CustomInputPopover = ({
<div
data-testid={`anchor-${id}`}
className={cn(
"primary-input border-1 placeholder:text-placeholder-foreground flex h-full min-h-[38px] flex-wrap items-center px-3",
"primary-input border-1 flex h-full min-h-[38px] flex-wrap items-center px-3 placeholder:text-placeholder-foreground",
editNode && "min-h-7 p-0",
editNode && disabled && "min-h-5 border-muted p-0",
disabled && "bg-muted text-muted",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function TextAreaComponent({
? externalLinkIconClasses.editNodeTop
: externalLinkIconClasses.iconTop,
disabled
? "text-placeholder-foreground bg-muted"
? "bg-muted text-placeholder-foreground"
: "bg-background text-foreground",
)}
/>
Expand Down

0 comments on commit d7e0f43

Please sign in to comment.