Skip to content

Commit

Permalink
"Edit" is "Revise" (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmd59 authored Jan 15, 2025
1 parent ea79b32 commit 114dbe9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/components/ResourceInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export default function ResourceInfoCard({ resourceInfo, authoring }: ResourceIn
}
key={resourceInfo.id}
>
<Tooltip label={authoring ? 'Edit Draft Resource' : 'View Resource Contents'} openDelay={1000}>
<Tooltip label={authoring ? 'Revise Draft Resource' : 'View Resource Contents'} openDelay={1000}>
<ActionIcon radius="md" size="md" variant="subtle" color="gray">
{authoring ? <IconEdit size="24" /> : <IconSquareArrowRight size="24" />}
</ActionIcon>
Expand Down
2 changes: 1 addition & 1 deletion app/src/pages/authoring/[resourceType]/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export default function ResourceAuthoringPage() {
<div>
<Center>
<Text c="gray" fz="xl">
{`Editing ${resourceType}/${id}`}
{`Revising ${resourceType}/${id}`}
</Text>
</Center>
<Divider my="md" style={{ marginTop: '14px' }} />
Expand Down

0 comments on commit 114dbe9

Please sign in to comment.