Ignore:
Timestamp:
01/31/26 22:34:40 (5 months ago)
Author:
Dimitar Arsov <dimitararsov04@…>
Branches:
main
Children:
d2af1a6
Parents:
2b08bed
Message:

show songs in playlists/albums

Location:
frontend/src/components/userProfile
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/components/userProfile/ListenerView.tsx

    r2b08bed r2730163  
    2020          <div className="flex items-center gap-2 mb-6 pb-2 border-b-2 border-gray-200">
    2121            <ListMusic className="w-6 h-6 text-gray-700" />
    22             <h3 className="text-2xl font-bold text-gray-800">My Playlists</h3>
     22            <h3 className="text-2xl font-bold text-gray-800">
     23              Created Playlists
     24            </h3>
    2325            <span className="text-sm text-gray-400 ml-1">
    2426              ({playlists.length})
     
    3133                key={playlist.id}
    3234                className="group cursor-pointer"
    33                 onClick={() => navigate(`/playlists/${playlist.id}`)}
     35                onClick={() => navigate(`/collection/playlist/${playlist.id}`)}
    3436              >
    3537                <div className="aspect-square rounded-md overflow-hidden bg-gray-100 mb-2 relative shadow-sm group-hover:shadow-lg transition-all">
     
    105107                key={album.id}
    106108                className="group cursor-pointer"
    107                 onClick={() => navigate(`/musical-entity/${album.id}`)}
     109                onClick={() => navigate(`/collection/album/${album.id}`)}
    108110              >
    109111                <div className="aspect-square rounded-lg overflow-hidden bg-gradient-to-br from-blue-100 to-indigo-100 mb-3 flex items-center justify-center shadow-sm group-hover:shadow-md transition-all">
  • frontend/src/components/userProfile/UserListModal.tsx

    r2b08bed r2730163  
    2525          <button
    2626            onClick={onClose}
    27             className="text-gray-500 hover:text-black text-2xl"
     27            className="text-gray-500 hover:text-black text-2xl cursor-pointer"
    2828          >
    2929            &times;
Note: See TracChangeset for help on using the changeset viewer.