I'm using version 2.1.8 of magento and when I get orders with long addresses in the sales administration the field "street" appears cut to 40 characters. I have set 3 client address lines by configuration, that works correctly and they are saved in BBDD ok, but when passing the order they are cut.
I have checked that the database field where the address field is saved is 255, so I suppose it will be some configuration. Any solution?
Type of field street in table "sales_order_address" is varchar(255) and street Address in checkout has 3 lines. So I think 255 is the total character of 3 lines.
First solution: Set max length for input field Street Address.
magento\app\code\Custom\Checkout\etc\di.xml
magento\app\code\Custom\Checkout\Block\LayoutProcessor.php
Second solution: set type of field street in table "sales_order_address" to text
Goodluck !