Skip to content

Commit

Permalink
fix(ui): freightline contents background renders text unreadable
Browse files Browse the repository at this point in the history
Signed-off-by: Remington Breeze <remington@breeze.software>
  • Loading branch information
rbreeze committed May 6, 2024
1 parent 13ebe88 commit c147f0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/features/freightline/freight-contents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const FreightContents = (props: { freight?: Freight; highlighted: boolean
} & React.PropsWithChildren
) => (
<Tooltip
className={`flex items-center my-1 flex-col bg-neutral-800 rounded p-1 w-full overflow-x-hidden`}
className={`flex items-center my-1 flex-col bg-neutral-300 rounded p-1 w-full overflow-x-hidden`}
overlay={props.overlay}
title={props.title}
>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/features/project/pipelines/pipelines.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ export const Pipelines = () => {
fullFreightById[node.data?.status?.currentFreight?.name || '']
}
hasNoSubscribers={
(subscribersByStage[node?.data?.metadata?.name || ''] || []).length <= 0
(subscribersByStage[node?.data?.metadata?.name || ''] || []).length <= 1
}
onPromoteClick={(type: FreightlineAction) => {
if (promotingStage?.metadata?.name === node.data?.metadata?.name) {
Expand Down

0 comments on commit c147f0e

Please sign in to comment.