From 487f6383e1a1a5782d85dee4fd87c9bf614b03a2 Mon Sep 17 00:00:00 2001
From: Darius Williams <dswilliams@contractor.usgs.gov>
Date: Thu, 31 Mar 2022 11:48:21 -0500
Subject: [PATCH] Changing id name

---
 .../monitoring-location/components/hydrograph/index.test.js   | 4 ++--
 .../components/hydrograph/select-actions.js                   | 4 ++--
 .../components/hydrograph/select-actions.test.js              | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

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 46a46570c..b565008e9 100644
--- a/assets/src/scripts/monitoring-location/components/hydrograph/index.test.js
+++ b/assets/src/scripts/monitoring-location/components/hydrograph/index.test.js
@@ -341,7 +341,7 @@ describe('monitoring-location/components/hydrograph module', () => {
         });
 
         it('should have two download data forms', () => {
-            expect(selectAll('#download-graph-data-container').size()).toBe(1);
+            expect(selectAll('#download-graph-data-container-select-actions').size()).toBe(1);
             expect(selectAll('#download-graph-data-container-data-table').size()).toBe(1);
         });
 
@@ -451,7 +451,7 @@ describe('monitoring-location/components/hydrograph module', () => {
         });
 
         it('should not have the download data element', () => {
-            expect(selectAll('#download-graph-data-container').size()).toBe(0);
+            expect(selectAll('#download-graph-data-container-select-actions').size()).toBe(0);
         });
 
         it('should not have method select element', () => {
diff --git a/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.js b/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.js
index 3331547fc..effb745b4 100644
--- a/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.js
+++ b/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.js
@@ -72,11 +72,11 @@ export const drawSelectActions = function(container, store, siteno, agencyCode)
     appendButton(listContainer, {
         uswdsIcon: 'file_download',
         buttonLabel: 'Retrieve data',
-        idOfDivToControl: 'download-graph-data-container'
+        idOfDivToControl: 'download-graph-data-container-select-actions'
     });
 
     container.append('div')
-        .attr('id', 'download-graph-data-container')
+        .attr('id', 'download-graph-data-container-select-actions')
         .attr('class', 'download-graph-data-container')
         .attr('hidden', true)
         .call(drawDownloadForm, store, siteno, agencyCode, 'hydrograph');
diff --git a/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.test.js b/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.test.js
index 85618b16e..32c90a4d3 100644
--- a/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.test.js
+++ b/assets/src/scripts/monitoring-location/components/hydrograph/select-actions.test.js
@@ -11,7 +11,7 @@ describe('monitoring-location/components/hydrograph/select-actions', () => {
     let testDiv;
     let store;
     const TIME_FORM_ID = 'change-time-span-container';
-    const DOWNLOAD_FORM_ID = 'download-graph-data-container';
+    const DOWNLOAD_FORM_ID = 'download-graph-data-container-select-actions';
 
     describe('Tests when iv or gw data is available', () => {
         const TEST_STATE = {
-- 
GitLab