mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add feed url in the web ui
This commit is contained in:
parent
983f0dcb99
commit
18251aefed
1 changed files with 3 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ import {
|
|||
SettingsTable,
|
||||
SettingsTableRow,
|
||||
} from '../../../components/templates/settings/SettingsTable'
|
||||
import { formattedShortDate } from '../../../lib/dateFormatting'
|
||||
import { formattedLongDate } from '../../../lib/dateFormatting'
|
||||
import { unsubscribeMutation } from '../../../lib/networking/mutations/unsubscribeMutation'
|
||||
import {
|
||||
SubscriptionType,
|
||||
|
|
@ -71,9 +71,10 @@ export default function Rss(): JSX.Element {
|
|||
},
|
||||
}}
|
||||
>
|
||||
{`URL: ${subscription.url}, `}
|
||||
{`Last fetched: ${
|
||||
subscription.lastFetchedAt
|
||||
? formattedShortDate(subscription.lastFetchedAt)
|
||||
? formattedLongDate(subscription.lastFetchedAt)
|
||||
: 'Never'
|
||||
}`}
|
||||
</StyledText>
|
||||
|
|
|
|||
Loading…
Reference in a new issue