From 15eb2a054f48e337eec904e662cf4ef8f2862cba Mon Sep 17 00:00:00 2001
From: mbucknel <mbucknell@usgs.gov>
Date: Wed, 6 Jul 2022 14:58:56 -0500
Subject: [PATCH] Reverted changes. Not sure why the same method works on
 date-picker but not here.

---
 .../hydrograph/vue-components/method-picker.vue        | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/assets/src/scripts/monitoring-location/components/hydrograph/vue-components/method-picker.vue b/assets/src/scripts/monitoring-location/components/hydrograph/vue-components/method-picker.vue
index 3f23bc9c3..998747c60 100644
--- a/assets/src/scripts/monitoring-location/components/hydrograph/vue-components/method-picker.vue
+++ b/assets/src/scripts/monitoring-location/components/hydrograph/vue-components/method-picker.vue
@@ -6,6 +6,7 @@
     >
       Sampling Methods/Sub-locations:
       <span
+        class="usa-tooltip"
         ref="tooltip"
         data-position="right"
         title="The names used in dropdown menu are often specific to a particular monitoring location and describe sampling details used to distinguish time-series of the same type--examples include variations in physical location and sensor type."
@@ -70,18 +71,13 @@ export default {
       return props.sortedIvMethods.methods.findIndex(method => method.pointCount === 0) > -1;
     });
 
-    const initializeUSWDSTooltip = function() {
-      tooltip.value.setAttribute('class', 'usa-tooltip');
-      uswdsTooltip.on(tooltip.value);
-    };
-
     onMounted(() => {
       if (document.readyState === 'complete') {
-        initializeUSWDSTooltip();
+        uswdsTooltip.on(tooltip.value);
       } else {
         document.addEventListener('readystatechange', (event) => {
           if (event.target.readyState === 'complete') {
-            initializeUSWDSTooltip();
+            uswdsTooltip.on(tooltip.value);
           }
         });
       }
-- 
GitLab