From b710cf83869f9417136613bb9b27d00d9341ea4b Mon Sep 17 00:00:00 2001 From: Corson-Dosch <hcorson-dosch@usgs.gov> Date: Tue, 13 Aug 2024 13:49:35 -0500 Subject: [PATCH 1/3] add profile pic for Maggie --- src/assets/text/text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/text/text.js b/src/assets/text/text.js index 7bb0ea5..0d8a145 100644 --- a/src/assets/text/text.js +++ b/src/assets/text/text.js @@ -5,7 +5,7 @@ export default { teamText: "The USGS Vizlab...View the Vizlab <a href='https://labs.waterdata.usgs.gov/visualizations/' target='_blank'>portfolio</a>.", teamData: [ { name: "Hayley Corson-Dosch", link: "https://www.usgs.gov/staff-profiles/hayley-corson-dosch", image: "https://labs.waterdata.usgs.gov/visualizations/headshots/HCorson-Dosch.png" }, - { name: "Maggie Jaenicke", link: "https://www.usgs.gov/staff-profiles/margaret-maggie-jaenicke", image: "" }, + { name: "Maggie Jaenicke", link: "https://www.usgs.gov/staff-profiles/margaret-maggie-jaenicke", image: "https://labs.waterdata.usgs.gov/visualizations/headshots/MaggieJaenicke.png" }, { name: "Cee Nell", link: "https://www.usgs.gov/staff-profiles/cee-nell", image: "https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/staff_profile/public/media/images/cee%20nell%20resized.png?h=53fbb397&itok=I7tqKZDm" }, { name: "Althea Archer", link: "https://www.usgs.gov/staff-profiles/althea-archer", image: "https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/staff_profile/public/media/images/aaarcher_staff_profile.jpg?h=585bdce6&itok=Z0LQ51Gs" }, { name: "Jeffrey Kwang", link: "https://www.usgs.gov/staff-profiles/jeffrey-kwang", image: "https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/staff_profile/public/media/images/J_Kwang_staffprofilephoto.jpg?h=d834b369&itok=MInrdIz2" } -- GitLab From 209574ae74a37426c7f206a7b3d0b20f5c871314 Mon Sep 17 00:00:00 2001 From: Corson-Dosch <hcorson-dosch@usgs.gov> Date: Tue, 13 Aug 2024 13:49:44 -0500 Subject: [PATCH 2/3] fix lint error --- src/components/AboutTheTeam.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AboutTheTeam.vue b/src/components/AboutTheTeam.vue index c01c6e0..1e53b21 100644 --- a/src/components/AboutTheTeam.vue +++ b/src/components/AboutTheTeam.vue @@ -116,7 +116,7 @@ onMounted(() => { .text(d => d.name); node - .on('mouseover', function (event, d) { + .on('mouseover', function () { d3.select(this).select('.overlay') .transition() .duration(200) @@ -126,7 +126,7 @@ onMounted(() => { .duration(200) .style('opacity', 1); }) - .on('mouseout', function (event, d) { + .on('mouseout', function () { d3.select(this).select('.overlay') .transition() .duration(200) -- GitLab From b92bcb08bd43889f6946789a75f93f46158a6565 Mon Sep 17 00:00:00 2001 From: Corson-Dosch <hcorson-dosch@usgs.gov> Date: Tue, 13 Aug 2024 13:56:49 -0500 Subject: [PATCH 3/3] Add Beaufort reference --- src/assets/text/references.js | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/assets/text/references.js b/src/assets/text/references.js index d13ba2a..40a2da6 100644 --- a/src/assets/text/references.js +++ b/src/assets/text/references.js @@ -76,6 +76,19 @@ export default { { reference: "Reference 1.", num: "1", + authors: "Crimmins, A.R., C.W. Avery, D.R. Easterling, K.E. Kunkel, B.C. Stewart, and T.K. Maycock, Eds.", + year: "2023", + title: "Fifth National Climate Assessment", + link: "https://nca2023.globalchange.gov/", + journal: true, + journal_name: "U.S. Global Change Research Program", + journal_issue: "Washington, DC, USA", + data_release: false, + doi: "https://doi.org/10.7930/NCA5.2023" + }, + { + reference: "Reference 2.", + num: "2", authors: "Gemery, L., Cronin, T.M., Cooper, L.W., Roberts, L.R., Keigwin, L.D., Addison, J.A., Leng, M.J., Lin, P., Magen, C., Marot, M.E., Schwartz, V.", year: "2023", title: "Multi-proxy record of ocean-climate vulnerability during the last 2 millenia on the Mackenzie Shelf, Beaufort Sea", @@ -87,8 +100,8 @@ export default { doi: "http://doi.org/10.47894/mpal.69.3.04" }, { - reference: "Reference 2.", - num: "2", + reference: "Reference 3.", + num: "3", authors: "Gemery, L.", year: "2021", title: "Data Release to Multi-proxy record of ocean-climate vulnerability during the last 2 millenia on the Mackenzie Shelf, Beaufort Sea.", @@ -100,8 +113,8 @@ export default { doi: "https://doi.org/10.5066/P9SRRW6T" }, { - reference: "Reference 3.", - num: "3", + reference: "Reference 4.", + num: "4", authors: "Seidenstein, J.L., Cronin, T.M., Gemery, L., Keigwin, L.D., Pearce, C., Jakobsson, M., Coxall, H.K., Wei, E.A., Driscoll, N.W.", year: "2018", title: "Late Holocene paleoceanography in the Chukchi and Beaufort Seas, Arctic Ocean, based on benthic foraminifera and ostracodes.", -- GitLab