Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
LANDING_DISPLAYS,
LandingDisplayField,
} from './utils';
import VitalsCards from './vitalsCards';
import {FrontendCards} from './vitalsCards';

type Props = {
organization: Organization;
Expand Down Expand Up @@ -133,11 +133,11 @@ class LandingContent extends React.Component<Props, State> {
</DropdownControl>
</ProjectTypeDropdown>
</SearchContainer>
<VitalsCards
<FrontendCards
eventView={frontendEventView}
organization={organization}
location={location}
isAlwaysShown
projects={projects}
/>
{currentLandingDisplay.field === LandingDisplayField.FRONTEND && (
<FrontendDisplay
Expand Down Expand Up @@ -173,10 +173,12 @@ class LandingContent extends React.Component<Props, State> {
onSearch={handleSearch}
/>
<Feature features={['performance-vitals-overview']}>
<VitalsCards
<FrontendCards
eventView={eventView}
organization={organization}
location={location}
projects={projects}
frontendOnly
/>
</Feature>
<Charts
Expand Down
Loading