text-input paragraph-height doesn't seem to work for me on mobile

am on a very recent runtime. 4.90.x
you can see no change in the height of the field with lots of text in it.
code for my Description field:

<text-input 
bind="asset.description" 
label="Description" 
required="false" 
paragraph-resize-mode="auto"  
paragraph-height-min="250" 
paragraph-height-max="600" 
/>

Good day Jaymer

Just to confirm, is the asset.description field you are using for the bind attribute a text:paragraph field?

The paragraph-* attributes are only applicable to text:paragraph fields, so that will be the first place you can check.

Here is an example:

    <model name="assets" label="Assets">
       ...
        <field name="textfield" label="textField" type="text" /> <!-- Will not apply paragraph-* attributes -->
        <field name="textparagraph" label="textParagraph" type="text:paragraph" /> <!-- Will apply paragraph-* attributes -->
   ...
    </model>

The docs didn’t state this clearly before, but have now been updated to do so.

Please don’t hesitate to let us know if the issue persists!

Kind regards
Wessels

Ahhh, yes that fixed it. Thanks!!!

This is nice, but I don’t see a way to control padding on cells in a dialog.
Do you know if there are plans to allow similar overrides like what is available on object-table and object-table cells ?

Good day Jaymer.

We’re glad that the issue has been resolved!

Regarding the ability to configure the padding on text-input components, unfortunately it isn’t possible at this time. We have added it as a feature request on our internal schedule so it will definitely be added at a later date.

Kind regards
Wessels