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

SAP / ui5-webcomponents-react / 9495457180

13 Jun 2024 07:23AM CUT coverage: 31.508% (-54.8%) from 86.282%
9495457180

Pull #5883

github

web-flow
Merge c3057fa50 into 7a27b7f0a
Pull Request #5883: fix(deps): update dependency @tanstack/react-virtual to v3.5.1

641 of 4086 branches covered (15.69%)

1973 of 6262 relevant lines covered (31.51%)

165.76 hits per line

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

50.0
/packages/main/src/components/AnalyticalTable/TableBody/EmptyRow.tsx
1
import type { VirtualItem } from '@tanstack/react-virtual';
2
import type { ReactNode } from 'react';
3

4
export const EmptyRow = ({
139✔
5
  virtualRow,
6
  className,
7
  children
8
}: {
9
  virtualRow: VirtualItem;
10
  className: string;
11
  children?: ReactNode;
12
}) => {
13
  return (
×
14
    <div
15
      data-empty-row="true"
16
      key={`empty_row_${virtualRow.index}`}
17
      className={className}
18
      style={{
19
        height: `${virtualRow.size}px`,
20
        transform: `translateY(${virtualRow.start}px)`,
21
        boxSizing: 'border-box'
22
      }}
23
    >
24
      {children}
25
    </div>
26
  );
27
};
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