Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Navigation/Tabs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const getTabTooltipMessage = (
tab: BaseTabData,
scope: Scope | null
): string | undefined => {
if (!scope?.span && [TAB_IDS.ERRORS, TAB_IDS.TESTS].includes(tab.id)) {
return "Global errors and tests is COMING SOON";
if (!scope?.span && tab.id === TAB_IDS.TESTS) {
return "Global tests is COMING SOON";
}

return tab.title;
Expand Down
Loading