diff --git a/frontend/src/components/DetailView/common/EditingModal.tsx b/frontend/src/components/DetailView/common/EditingModal.tsx index 12e1eadc..86dab832 100755 --- a/frontend/src/components/DetailView/common/EditingModal.tsx +++ b/frontend/src/components/DetailView/common/EditingModal.tsx @@ -31,7 +31,7 @@ export const EditingModal = ({ return ( - >; return width } return ( - + {array.map((row, rowIndex) => ( - + {row.map((item, index) => ( >; borderRight: '1px solid rgba(224, 224, 224, 1)', }} padding="5px" + size={getCellWidth(rowIndex, index)} > {typeof item === 'string' ? {item} : item} @@ -94,6 +94,7 @@ export const Grouped = ({ borderColor: error ? 'red' : warning ? 'orange' : '', borderRadius: error || warning ? 4 : '', borderStyle: error || warning ? 'none none none solid' : '', + gap: '1em', } const titleColor = error ? 'red' : warning ? 'orange' : 'text.secondary' @@ -108,7 +109,9 @@ export const Grouped = ({ )} - {children} + + {children} + ) }