Skip to content

Commit

Permalink
issue tl-its-umich-edu#369 updated the button label text (tl-its-umic…
Browse files Browse the repository at this point in the history
  • Loading branch information
zqian authored Nov 27, 2024
1 parent 13d56fb commit 1aa5814
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/app/components/toolButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ import { Button, ButtonProps } from '@mui/material';
function AddToolButton (props: ButtonProps) {
return (
<Button
aria-label='Add tool to course'
aria-label='Enable tool in course'
variant='contained'
startIcon={<AddIcon />}
{...props}
>
Add tool
Enable
</Button>
);
}

function RemoveToolButton (props: ButtonProps) {
return (
<Button
aria-label='Remove tool from course'
aria-label='Disable tool in course'
variant='outlined'
startIcon={<RemoveIcon />}
{...props}
>
Remove tool
Disable
</Button>
);
}
Expand Down

0 comments on commit 1aa5814

Please sign in to comment.