Changeset 591919d for frontend


Ignore:
Timestamp:
02/06/26 21:36:01 (5 months ago)
Author:
Filip Gavrilovski <filipgavrilovski28@…>
Branches:
main
Children:
5938bc9
Parents:
b071fb4
Message:

add album to songs on landing page

Location:
frontend/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/pages/LandingPage.tsx

    rb071fb4 r591919d  
    350350                                                                                                        </h3>
    351351                                                                                                        <p className="text-sm text-gray-400 mb-3 overflow-hidden text-ellipsis whitespace-nowrap">
    352                                                                                                                 {"<album>"}
     352                                                                                                                {song.album}
    353353                                                                                                        </p>
    354354                                                                                                        <p className="text-sm text-gray-400 mb-3 overflow-hidden text-ellipsis whitespace-nowrap">
  • frontend/src/utils/types.ts

    rb071fb4 r591919d  
    2828export interface Song extends MusicalEntity {
    2929        type: "SONG";
     30        album?: string;
    3031}
    3132
Note: See TracChangeset for help on using the changeset viewer.