fix(ui): auto-grow item detail-description box + offer money columns to 8rem (consistency across invoice/order/offer)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-09 15:28:17 +02:00
parent db11999c85
commit f295af4a14
3 changed files with 20 additions and 2 deletions

View File

@@ -284,6 +284,9 @@ function SortableOrderRow({
onChange={(e) => onUpdate(index, "item_description", e.target.value)}
placeholder="Volitelný"
InputProps={{ readOnly }}
multiline
minRows={1}
maxRows={8}
/>
<Box
sx={{
@@ -397,6 +400,9 @@ function SortableOrderRow({
}
placeholder="Podrobný popis (volitelný)"
InputProps={{ readOnly }}
multiline
minRows={1}
maxRows={8}
sx={{ "& input": { fontSize: "0.8rem", opacity: 0.8 } }}
/>
</Box>