Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TM-1438 add back button to bid tracker #599

Merged
merged 8 commits into from
Dec 16, 2019
2 changes: 2 additions & 0 deletions src/Components/BidTracker/BidTracker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import ProfileSectionTitle from '../ProfileSectionTitle';
import Spinner from '../Spinner';
import NotificationsSection from './NotificationsSection';
import ContactCDOButton from './ContactCDOButton';
import BackButton from '../BackButton';

const BidTracker = ({ bidList, bidListIsLoading, acceptBid, declineBid, submitBid, deleteBid,
notifications, notificationsIsLoading, markBidTrackerNotification, userProfile,
Expand All @@ -16,6 +17,7 @@ userProfileIsLoading, isPublic, useCDOView }) => {
`${userProfile.name}'s Bid Tracker` : 'Bid Tracker';
return (
<div className="usa-grid-full profile-content-inner-container bid-tracker-page">
<BackButton />
{
!isPublic &&
<NotificationsSection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ exports[`BidTrackerComponent matches snapshot 1`] = `
<div
className="usa-grid-full profile-content-inner-container bid-tracker-page"
>
<Connect(withRouter()) />
<NotificationsSection
markBidTrackerNotification={[Function]}
notifications={
Expand Down Expand Up @@ -326,6 +327,7 @@ exports[`BidTrackerComponent matches snapshot when bidListIsLoading is true 1`]
<div
className="usa-grid-full profile-content-inner-container bid-tracker-page"
>
<Connect(withRouter()) />
<NotificationsSection
markBidTrackerNotification={[Function]}
notifications={
Expand Down