fix(compare): swap LangChain logo, fix comparison-table horizontal scroll by waleedlatif1 · Pull Request #5409 · simstudioai/sim · GitHub
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'

import type { ReactNode } from 'react'
import { Tooltip } from '@sim/emcn'
import { cn, Tooltip } from '@sim/emcn'
import type { FactSource } from '@/lib/compare/data'

export interface SourceLinkProps {
Expand Down Expand Up @@ -29,7 +29,7 @@ export function SourceLink({ source, children, className }: SourceLinkProps) {
target='_blank'
rel='noopener noreferrer'
aria-label={`${source.label} (opens source)`}
className={className}
className={cn('block min-w-0', className)}
>
{children}
</a>
Expand Down
4 changes: 2 additions & 2 deletions apps/sim/components/icons.tsx
Loading