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

SAP / ui5-webcomponents-react / 9495452693

13 Jun 2024 07:23AM CUT coverage: 86.298% (+0.02%) from 86.282%
9495452693

Pull #5920

github

web-flow
Merge 8cd8b6a82 into 7a27b7f0a
Pull Request #5920: chore(deps): update ui5 web components to v2.0.0-rc.5 (patch)

2980 of 4086 branches covered (72.93%)

5404 of 6262 relevant lines covered (86.3%)

65738.3 hits per line

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

100.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 = ({
428✔
5
  virtualRow,
6
  className,
7
  children
8
}: {
9
  virtualRow: VirtualItem;
10
  className: string;
11
  children?: ReactNode;
12
}) => {
13
  return (
34,893✔
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