From 9e900c242562569a6cc368461d402c817d1c0c04 Mon Sep 17 00:00:00 2001 From: Daniel Haven <49914607+danielh-official@users.noreply.github.com> Date: Thu, 30 Oct 2025 20:43:07 -0400 Subject: [PATCH 1/2] Add Jetbrains .idea folder to gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 12ac647..b8c8768 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ -.DS_Store \ No newline at end of file +.DS_Store +.idea/ \ No newline at end of file From 2ccf58bc03a79764a1ed3b3148e6772495b36118 Mon Sep 17 00:00:00 2001 From: Daniel Haven <49914607+danielh-official@users.noreply.github.com> Date: Thu, 30 Oct 2025 20:56:55 -0400 Subject: [PATCH 2/2] Make top track title into clickable link Each track title opens in new tab on the Spotify track url upon being clicked. --- client/src/pages/Dashboard/Dashboard.css | 5 +++++ client/src/pages/Dashboard/Dashboard.jsx | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/client/src/pages/Dashboard/Dashboard.css b/client/src/pages/Dashboard/Dashboard.css index 24504be..eabf95c 100644 --- a/client/src/pages/Dashboard/Dashboard.css +++ b/client/src/pages/Dashboard/Dashboard.css @@ -317,3 +317,8 @@ height: 50px; } } + +.link { + color: #1db954; + text-decoration: none; +} \ No newline at end of file diff --git a/client/src/pages/Dashboard/Dashboard.jsx b/client/src/pages/Dashboard/Dashboard.jsx index fd37f2e..64ca356 100644 --- a/client/src/pages/Dashboard/Dashboard.jsx +++ b/client/src/pages/Dashboard/Dashboard.jsx @@ -79,7 +79,7 @@ const Dashboard = ({ accessToken, onLogout }) => { />
{track.artists.map((artist) => artist.name).join(', ')}
{track.album.name}