Skip to content

Commit 0a1bdbf

Browse files
committed
fix(frontend): fixed button labels in EditableTable
1 parent 5aab138 commit 0a1bdbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/frontend/app/components/ui/EditableTable.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export const EditableTable = ({
120120
<Table.Cell key={1}>
121121
{option.canEdit && !option.showInput ? (
122122
<Button
123-
aria-label='save http information'
123+
aria-label='edit'
124124
onClick={() => toggleEditInput(index)}
125125
>
126126
Edit
@@ -129,7 +129,7 @@ export const EditableTable = ({
129129
{option.canDelete ? (
130130
<Button
131131
className='ml-2'
132-
aria-label='delete http information'
132+
aria-label='delete'
133133
onClick={() => deleteOption(index)}
134134
>
135135
Delete
@@ -141,7 +141,7 @@ export const EditableTable = ({
141141
</Table.Body>
142142
</Table>
143143
<div className='flex justify-end mt-2'>
144-
<Button aria-label='add http information' onClick={() => addOption()}>
144+
<Button aria-label='add' onClick={() => addOption()}>
145145
Add
146146
</Button>
147147
</div>

0 commit comments

Comments
 (0)