Prefer the savedAt date over created at in the article headers
This commit is contained in:
@ -398,7 +398,9 @@ export function ArticleContainer(props: ArticleContainerProps): JSX.Element {
|
||||
<VStack alignment="start" distribution="start">
|
||||
<ReaderSavedInfo
|
||||
rawDisplayDate={
|
||||
props.article.publishedAt ?? props.article.createdAt
|
||||
props.article.publishedAt ??
|
||||
props.article.savedAt ??
|
||||
props.article.createdAt
|
||||
}
|
||||
wordsCount={props.article.wordsCount}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user