Small improvements on export information

This commit is contained in:
Eduard Heimbuch
2021-02-25 14:17:08 +01:00
parent db2ce98721
commit 972cfd312b
3 changed files with 8 additions and 8 deletions

View File

@@ -26,7 +26,7 @@ import {
Button,
ButtonGroup,
Checkbox,
DateShort,
DateFromNow,
ErrorNotification,
InputField,
Level,
@@ -65,7 +65,7 @@ const ExportInfoBox: FC<{ exportInfo: ExportInfo }> = ({ exportInfo }) => {
<p>{t("export.exportInfo.exporter", { username: exportInfo.exporterName })}</p>
<p>
{t("export.exportInfo.created")}
<DateShort date={exportInfo.created} />
<DateFromNow date={exportInfo.created} />
</p>
<br />
<p>{exportInfo.withMetadata ? t("export.exportInfo.repositoryArchive") : t("export.exportInfo.repository")}</p>