Skip to content

Commit

Permalink
Rename system buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Jan 30, 2024
1 parent d082923 commit 2993c69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ const CreateSystemModal: React.FC<ToolbarModalProps> = ({ toggle }) => {
aria-label="Submit"
type="submit"
>
Create a new system
Create
</Button>
</SubmitWrapper>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,21 @@ const SystemToolbar: React.FC = () => {
{pathname && (
<div className={styles['toolbar-wrapper']}>
<ToolbarButton
text="Create a New System"
text="Create"
icon="add"
disabled={false}
onClick={() => setModal('createsystem')}
aria-label="createSystem"
/>
<ToolbarButton
text="Delete a System"
text="Delete"
icon="trash"
disabled={false}
onClick={() => setModal('deletesystem')}
aria-label="deleteSystem"
/>
<ToolbarButton
text="Re-Add a System"
text="Undelete"
icon="add"
disabled={false}
onClick={() => setModal('undeletesystem')}
Expand Down

0 comments on commit 2993c69

Please sign in to comment.