File tree Expand file tree Collapse file tree
features/githubCard/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const ArticleItem = (props: ArticleItemPropsType) => {
2020 source = { sourceName }
2121 key = { index }
2222 index = { index }
23- item = { { ... item , title } }
23+ item = { item }
2424 cardItem = {
2525 < >
2626 < CardLink
@@ -29,14 +29,14 @@ const ArticleItem = (props: ArticleItemPropsType) => {
2929 analyticsAttributes = { {
3030 [ Attributes . POINTS ] : item . reactions ,
3131 [ Attributes . TRIGERED_FROM ] : 'card' ,
32- [ Attributes . TITLE ] : title ,
32+ [ Attributes . TITLE ] : item . title ,
3333 [ Attributes . LINK ] : item . url ,
3434 [ Attributes . SOURCE ] : sourceName ,
3535 [ Attributes . LANGUAGE ] : selectedTag ?. value ,
3636 } } >
3737 < VscRepo className = { 'rowTitleIcon' } />
3838 { item . owner && `${ item ?. owner } /` }
39- < b > { item . title } </ b >
39+ < b > { item . name } </ b >
4040 </ CardLink >
4141 < p className = "rowDescription" > { item . description } </ p >
4242 { listingMode === 'normal' && (
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ export type ArticleType = {
5252 owner ?: string
5353 forks ?: string
5454 starsInDateRange ?: string
55+ name ?: string
5556}
5657
5758export type ConferenceType = {
You can’t perform that action at this time.
0 commit comments