Skip to content

Commit

Permalink
Exclude time range from report details for Notebooks (opensearch-proj…
Browse files Browse the repository at this point in the history
…ect#117)

* exclude time range check for notebooks reports
Signed-off-by: David Cui <davidcui@amazon.com>

* use report source identifier over url partial match
Signed-off-by: David Cui <davidcui@amazon.com>

* add report details fix to release notes
Signed-off-by: David Cui <davidcui@amazon.com>

* add more bug fixes to release notes
Signed-off-by: David Cui <davidcui@amazon.com>
  • Loading branch information
davidcui1225 authored Jul 8, 2021
1 parent 6873a52 commit 031056e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/components/main/report_details/report_details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export function ReportDetails(props) {
source: reportParams.report_source,
// TODO: we have all data needed, time_from, time_to, time_duration,
// think of a way to better display
time_period: parseTimePeriod(queryUrl),
time_period: (reportParams.report_source !== 'Notebook') ? parseTimePeriod(queryUrl) : '',
defaultFileFormat: coreParams.report_format,
state: state,
reportHeader:
Expand Down

0 comments on commit 031056e

Please sign in to comment.