File tree Expand file tree Collapse file tree
features/conferencesCard/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,19 +56,19 @@ const ConferencesItem = (props: ConferenceItemPropsType) => {
5656 source = { 'conferences' }
5757 index = { index }
5858 key = { index }
59- item = { { ... item , title : item . name } }
59+ item = { item }
6060 cardItem = {
6161 < >
6262 < CardLink
6363 link = { item . url }
6464 analyticsAttributes = { {
6565 [ Attributes . TRIGERED_FROM ] : 'card' ,
66- [ Attributes . TITLE ] : item . name ,
66+ [ Attributes . TITLE ] : item . title ,
6767 [ Attributes . LINK ] : item . url ,
6868 [ Attributes . SOURCE ] : 'conferences' ,
6969 } } >
7070 < RiCalendarEventFill className = { 'rowTitleIcon' } />
71- { item . name }
71+ { item . title }
7272 </ CardLink >
7373 { listingMode === 'normal' ? (
7474 < >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export type RepoType = {
6767
6868export type ConferenceType = {
6969 id : string
70- name : string
70+ title : string
7171 url : string
7272 start_date : number
7373 end_date : number
You can’t perform that action at this time.
0 commit comments