Backstage
    Preparing search index...

    Interface HeaderTab

    Represents a tab item in the header navigation.

    interface HeaderTab {
        href: string;
        id: string;
        label: string;
        matchStrategy?: TabMatchStrategy;
    }
    Index

    Properties

    href: string
    id: string
    label: string
    matchStrategy?: TabMatchStrategy

    Strategy for matching the current route to determine if this tab should be active.

    • 'exact': Tab href must exactly match the current pathname (default)
    • 'prefix': Tab is active if current pathname starts with tab href