• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IQSS / dataverse-frontend / 6162162718

12 Sep 2023 04:16PM CUT coverage: 98.443% (-0.09%) from 98.531%
6162162718

Pull #156

github

MellyGray
fix(FilesTableRowSelection): global checkbox should select the current page only
Pull Request #156: 149 - Configure manual pagination in the Files Table UI

270 of 280 branches covered (0.0%)

Branch coverage included in aggregate %.

98 of 98 new or added lines in 10 files covered. (100.0%)

931 of 940 relevant lines covered (99.04%)

872.49 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

85.71
/packages/design-system/src/lib/components/tooltip/Tooltip.tsx
1
import { OverlayTrigger as OverlayTriggerBS, Tooltip as TooltipBS } from 'react-bootstrap'
612!
2
import { Placement } from 'react-bootstrap/types'
3
import { ReactElement } from 'react'
4

5
interface OverlayTriggerProps {
6
  placement: Placement
7
  overlay: string | ReactElement
8
  children: ReactElement
9
  maxWidth?: number
10
}
11

12
export function Tooltip({ placement, overlay, children, maxWidth = 200 }: OverlayTriggerProps) {
102✔
13
  return (
38✔
14
    <OverlayTriggerBS
15
      key={placement}
16
      placement={placement}
17
      overlay={<TooltipBS style={{ maxWidth: maxWidth }}>{overlay}</TooltipBS>}>
18
      <div style={{ display: 'inline-block' }}>{children}</div>
19
    </OverlayTriggerBS>
20
  )
21
}
102✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc