Skip to content

Commit

Permalink
fix(frontend): fixed button labels in EditableTable
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Sep 2, 2024
1 parent 5aab138 commit 0a1bdbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/frontend/app/components/ui/EditableTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const EditableTable = ({
<Table.Cell key={1}>
{option.canEdit && !option.showInput ? (
<Button
aria-label='save http information'
aria-label='edit'
onClick={() => toggleEditInput(index)}
>
Edit
Expand All @@ -129,7 +129,7 @@ export const EditableTable = ({
{option.canDelete ? (
<Button
className='ml-2'
aria-label='delete http information'
aria-label='delete'
onClick={() => deleteOption(index)}
>
Delete
Expand All @@ -141,7 +141,7 @@ export const EditableTable = ({
</Table.Body>
</Table>
<div className='flex justify-end mt-2'>
<Button aria-label='add http information' onClick={() => addOption()}>
<Button aria-label='add' onClick={() => addOption()}>
Add
</Button>
</div>
Expand Down

0 comments on commit 0a1bdbf

Please sign in to comment.