2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 11:36:44 +00:00

Slight tweaks to forms (#9149) use

This commit is contained in:
Oliver 2025-02-22 23:33:35 +11:00 committed by GitHub
parent 347f7ea050
commit 07423ff247
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@ export default function RemoveRowButton({
onClick={onClick} onClick={onClick}
icon={<InvenTreeIcon icon='square_x' />} icon={<InvenTreeIcon icon='square_x' />}
tooltip={tooltip} tooltip={tooltip}
tooltipAlignment='top' tooltipAlignment='top-end'
color='red' color='red'
/> />
); );

View File

@ -266,7 +266,8 @@ export function useAllocateToSalesOrderForm({
{ title: t`Part`, style: { minWidth: '200px' } }, { title: t`Part`, style: { minWidth: '200px' } },
{ title: t`Allocated`, style: { minWidth: '200px' } }, { title: t`Allocated`, style: { minWidth: '200px' } },
{ title: t`Stock Item`, style: { width: '100%' } }, { title: t`Stock Item`, style: { width: '100%' } },
{ title: t`Quantity`, style: { width: '200px' } } { title: t`Quantity`, style: { minWidth: '200px' } },
{ title: '', style: { width: '50px' } }
], ],
modelRenderer: (row: TableFieldRowProps) => { modelRenderer: (row: TableFieldRowProps) => {
const record = const record =