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

cartesi / rollups-explorer / 11826960107

13 Nov 2024 10:31PM UTC coverage: 85.956% (-0.6%) from 86.605%
11826960107

Pull #256

github

nevendyulgerov
test(apps/web): Tweak layout for tuple inputs
Pull Request #256: #251 Add ABI encoding for raw input form

1368 of 1630 branches covered (83.93%)

Branch coverage included in aggregate %.

793 of 984 new or added lines in 13 files covered. (80.59%)

9465 of 10973 relevant lines covered (86.26%)

47.16 hits per line

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

0.0
/apps/web/src/components/breadcrumbs.tsx
1
import { Anchor, Breadcrumbs as MantineBreadcrumbs } from "@mantine/core";
×
2
import Link from "next/link";
×
3
import type { FC, ReactNode } from "react";
4

5
export interface BreadcrumbModel {
6
    href: string;
7
    label: string;
8
}
9

10
interface BreadcrumbsProps {
11
    breadcrumbs: BreadcrumbModel[];
12
    children?: ReactNode;
13
}
14

15
const Breadcrumbs: FC<BreadcrumbsProps> = ({ breadcrumbs, children }) => {
×
16
    return (
×
17
        <MantineBreadcrumbs>
×
18
            {breadcrumbs.map((breadcrumb) => (
×
19
                <Anchor
×
20
                    key={breadcrumb.href}
×
21
                    href={breadcrumb.href}
×
22
                    component={Link}
×
23
                >
24
                    {breadcrumb.label}
×
25
                </Anchor>
×
26
            ))}
×
27
            {children}
×
28
        </MantineBreadcrumbs>
×
29
    );
30
};
×
31

32
export default Breadcrumbs;
×
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