fix: change icon and name of last saved sidebar entry

Signed-off-by: Yannick Bungers <git@innay.de>
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-10-08 16:19:46 +02:00 committed by Philip Molares
parent 10776de54f
commit ff7a7a220d
2 changed files with 3 additions and 3 deletions

View file

@ -356,7 +356,7 @@
"noteInfo": {
"title": "Note info",
"created": "Note created",
"lastUpdated": "Last updated",
"lastUpdated": "Last saved at",
"lastUpdatedBy": "Last updated by",
"contributors": "Count of contributors",
"wordCount": "Count of words"

View file

@ -8,7 +8,7 @@ import { TimeFromNow } from '../../../../../common/time-from-now'
import { SidebarMenuInfoEntry } from '../../../sidebar-menu-info-entry/sidebar-menu-info-entry'
import { DateTime } from 'luxon'
import React, { useMemo } from 'react'
import { Pencil as IconPencil } from 'react-bootstrap-icons'
import { Save as IconSave } from 'react-bootstrap-icons'
import { useTranslation } from 'react-i18next'
/**
@ -23,7 +23,7 @@ export const NoteInfoLineUpdatedAt: React.FC = () => {
)
return !noteUpdateDateTime ? null : (
<SidebarMenuInfoEntry titleI18nKey={'editor.noteInfo.lastUpdated'} icon={IconPencil}>
<SidebarMenuInfoEntry titleI18nKey={'editor.noteInfo.lastUpdated'} icon={IconSave}>
<TimeFromNow time={noteUpdateDateTime} />
</SidebarMenuInfoEntry>
)