mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
Fix for sizes of table action columns (#657)
This commit is contained in:
parent
6703244857
commit
93bb91aca7
1 changed files with 2 additions and 2 deletions
|
|
@ -438,7 +438,7 @@ export function Table({
|
|||
id: 'leftActions',
|
||||
Header: 'Actions',
|
||||
accessor: 'edit',
|
||||
width: columnSizes.actions || defaultColumn.width,
|
||||
width: columnSizes.leftActions || defaultColumn.width,
|
||||
Cell: (cell) => {
|
||||
return leftActions().map((action) => (
|
||||
<button
|
||||
|
|
@ -464,7 +464,7 @@ export function Table({
|
|||
id: 'rightActions',
|
||||
Header: 'Actions',
|
||||
accessor: 'edit',
|
||||
width: columnSizes.actions || defaultColumn.width,
|
||||
width: columnSizes.rightActions || defaultColumn.width,
|
||||
Cell: (cell) => {
|
||||
return rightActions().map((action) => (
|
||||
<button
|
||||
|
|
|
|||
Loading…
Reference in a new issue