this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Enable comment hint for end of thread/conversation

+4 -1
+4 -1
src/components/timeline.jsx
··· 567 567 !_differentAuthor && 568 568 !items[i - 1]._differentAuthor && 569 569 !items[i + 1]._differentAuthor))); 570 + const isEnd = i === items.length - 1; 570 571 return ( 571 572 <li 572 573 key={`timeline-${statusID}`} 573 574 class={`timeline-item-container timeline-item-container-type-${type} timeline-item-container-${ 574 - i === 0 ? 'start' : i === items.length - 1 ? 'end' : 'middle' 575 + i === 0 ? 'start' : isEnd ? 'end' : 'middle' 575 576 } ${_differentAuthor ? 'timeline-item-diff-author' : ''}`} 576 577 > 577 578 <Link class="status-link timeline-item" to={url}> ··· 581 582 <Status 582 583 statusID={statusID} 583 584 instance={instance} 585 + enableCommentHint={isEnd} 584 586 // allowFilters={allowFilters} 585 587 /> 586 588 ) : ( 587 589 <Status 588 590 status={item} 589 591 instance={instance} 592 + enableCommentHint={isEnd} 590 593 // allowFilters={allowFilters} 591 594 /> 592 595 )}