Skip to content

Commit

Permalink
LRSD-4390 Small adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Santos authored and brianchandotcom committed May 22, 2024
1 parent 0c5c43e commit 387c0da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ const PartnerOpportunitiesList = ({isRenewalListing, name}: IProps) => {
];

const todayDate = new Date();

const formattedDate = todayDate.toISOString().slice(0, 10);

const rangeDataPicker = openOpportunitiesFilter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function getCloseDateFilterTerm(
if (activityPeriod.dates.startDate) {
filterDates.push(`closeDate ge ${activityPeriod.dates.startDate}`);
}

if (activityPeriod.dates.endDate) {
filterDates.push(`closeDate le ${activityPeriod.dates.endDate}`);
}
Expand Down

0 comments on commit 387c0da

Please sign in to comment.