Skip to content

Commit 87ae344

Browse files
committed
refactor(frontend): handle EditableTable scaling properly
- `Table` component we use in `EditableTable` has `min-w-full` class, which breaks scaling, resulting in overflowing on small resolutions.
1 parent bb3293e commit 87ae344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export const EditableTable = ({
9191
required={required}
9292
label={label}
9393
/>
94-
<Table>
94+
<Table style={{ width: '100%' }}>
9595
<Table.Head columns={['Token', 'Action']} />
9696
<Table.Body>
9797
{(optionsList || []).map((option, index) => (

0 commit comments

Comments
 (0)