Prefer the savedAt date over created at in the article headers

This commit is contained in:
Jackson Harper
2023-08-08 20:45:38 +08:00
parent 8e2e36aa62
commit 4b01aa4da0

View File

@ -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}
/>