From abd921903517d09cebc7d9d712354048465910e6 Mon Sep 17 00:00:00 2001 From: Aaron Briggs <abriggs@contractor.usgs.gov> Date: Wed, 25 Aug 2021 14:07:48 -0500 Subject: [PATCH] changelog --- CHANGELOG.md | 3 ++- .../monitoring-location/components/hydrograph/index.js | 2 +- .../monitoring-location/components/hydrograph/index.test.js | 5 ----- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 880606854..0208a5e62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - The Method Picker responds to change in option selection. - When a site has no IV data but does have discrete site visits, the code properly handles that and the IV hydrograph will now render. - HUCs not represented in the lookup files will not show in the Subbasin hydrologic unit row of the Location Metadata table. - +- Hydrograph data table pagination no longer jumps to top of page. +- ## [0.50.0](https://github.com/usgs/waterdataui/compare/waterdataui-0.49.0...waterdataui-0.50.0) - 2021-08-18 ### Changed - The NWIS site service and sifta service now use aiohttp and are called concurrently in the monitoring_location view. diff --git a/assets/src/scripts/monitoring-location/components/hydrograph/index.js b/assets/src/scripts/monitoring-location/components/hydrograph/index.js index f522d727f..1cdafee9c 100644 --- a/assets/src/scripts/monitoring-location/components/hydrograph/index.js +++ b/assets/src/scripts/monitoring-location/components/hydrograph/index.js @@ -150,7 +150,7 @@ export const attachToNode = function(store, legendControlsContainer.call(drawTimeSeriesLegend, store); if (!thisShowOnlyGraph) { - // Compensates for USWDS pagination jumping to top of page + // Compensates for list.js pagination jumping to top of page nodeElem.select('.graph-data') .on('click', function() { nodeElem.selectAll('#iv-data-table-container a.page').attr('href', '#/'); diff --git a/assets/src/scripts/monitoring-location/components/hydrograph/index.test.js b/assets/src/scripts/monitoring-location/components/hydrograph/index.test.js index 4886918b6..18fbdd165 100644 --- a/assets/src/scripts/monitoring-location/components/hydrograph/index.test.js +++ b/assets/src/scripts/monitoring-location/components/hydrograph/index.test.js @@ -338,11 +338,6 @@ describe('monitoring-location/components/hydrograph module', () => { expect(select('#iv-hydrograph-data-table-container').size()).toBe(1); expect(select('#gw-hydrograph-data-table-container').size()).toBe(1); }); - - it('should stop pagination from jumping to top of page', () => { - expect(select('.wdfn-accordion').size()).toBe(1); - - }); }); describe('Tests for rendering once fetching is complete when showOnlyGraph is true', () => { -- GitLab