Changeset 2730163 for frontend/src/components
- Timestamp:
- 01/31/26 22:34:40 (5 months ago)
- Branches:
- main
- Children:
- d2af1a6
- Parents:
- 2b08bed
- Location:
- frontend/src/components/userProfile
- Files:
-
- 2 edited
-
ListenerView.tsx (modified) (3 diffs)
-
UserListModal.tsx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/components/userProfile/ListenerView.tsx
r2b08bed r2730163 20 20 <div className="flex items-center gap-2 mb-6 pb-2 border-b-2 border-gray-200"> 21 21 <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> 23 25 <span className="text-sm text-gray-400 ml-1"> 24 26 ({playlists.length}) … … 31 33 key={playlist.id} 32 34 className="group cursor-pointer" 33 onClick={() => navigate(`/ playlists/${playlist.id}`)}35 onClick={() => navigate(`/collection/playlist/${playlist.id}`)} 34 36 > 35 37 <div className="aspect-square rounded-md overflow-hidden bg-gray-100 mb-2 relative shadow-sm group-hover:shadow-lg transition-all"> … … 105 107 key={album.id} 106 108 className="group cursor-pointer" 107 onClick={() => navigate(`/ musical-entity/${album.id}`)}109 onClick={() => navigate(`/collection/album/${album.id}`)} 108 110 > 109 111 <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 25 25 <button 26 26 onClick={onClose} 27 className="text-gray-500 hover:text-black text-2xl "27 className="text-gray-500 hover:text-black text-2xl cursor-pointer" 28 28 > 29 29 ×
Note:
See TracChangeset
for help on using the changeset viewer.
