Skip to content

Commit

Permalink
STDTC-105: Apply tenant date-time when filter data export logs by dat…
Browse files Browse the repository at this point in the history
…e on View all page (#296)
  • Loading branch information
UladzislauKutarkin authored Mar 28, 2024
1 parent 274b346 commit 063b96e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/ViewAllLogsFilters/ViewAllLogsFilters.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ const getDateRange = filterValue => {
};

const getDateFilter = (startDate, endDate) => {
const endDateCorrected = moment.utc(endDate).format(DATE_FORMAT);

return `${startDate}:${endDateCorrected}`;
return `${startDate}:${endDate}`;
};

export const onChangeSelectionFilter = (onChange, filterName) => {
Expand Down

0 comments on commit 063b96e

Please sign in to comment.