Skip to content

Commit 72705e2

Browse files
authored
Exclude time range from report details for Notebooks (#117)
* exclude time range check for notebooks reports Signed-off-by: David Cui <[email protected]> * use report source identifier over url partial match Signed-off-by: David Cui <[email protected]> * add report details fix to release notes Signed-off-by: David Cui <[email protected]> * add more bug fixes to release notes Signed-off-by: David Cui <[email protected]>
1 parent c0b29d3 commit 72705e2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

dashboards-reports/public/components/main/report_details/report_details.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export function ReportDetails(props) {
211211
source: reportParams.report_source,
212212
// TODO: we have all data needed, time_from, time_to, time_duration,
213213
// think of a way to better display
214-
time_period: parseTimePeriod(queryUrl),
214+
time_period: (reportParams.report_source !== 'Notebook') ? parseTimePeriod(queryUrl) : '',
215215
defaultFileFormat: coreParams.report_format,
216216
state: state,
217217
reportHeader:

release-notes/opensearch-dashboards-reports.release-notes-1.0.0.0.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ Compatible with OpenSearch 1.0.0
2626
* Better support sorting for csv report based on saved search ([#86](https://github.com/opensearch-project/dashboards-reports/pull/86))
2727
* bump dependency version ([#101](https://github.com/opensearch-project/dashboards-reports/pull/101))
2828
* fix failed cypress integ-testing ([#106](https://github.com/opensearch-project/dashboards-reports/pull/106))
29+
* Fix notebooks context menu ([#109](https://github.com/opensearch-project/dashboards-reports/pull/109))
30+
* Update context menu download request body after schema change ([#115](https://github.com/opensearch-project/dashboards-reports/pull/115))
31+
* Exclude time range from report details for Notebooks ([#117](https://github.com/opensearch-project/dashboards-reports/pull/117))
2932

3033

3134
### Infrastructure

0 commit comments

Comments
 (0)