mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #2625 from omnivore-app/fix/web-use-saved-at
Prefer the savedAt date over created at in the article headers
This commit is contained in:
commit
d56fc47b91
1 changed files with 3 additions and 1 deletions
|
|
@ -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}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue