palantir/blueprint
Vedi su GitHub[FormGroup] Using both `inline` and `subLabel` props produce misaligned `subLabel`s
Open
#5294 aperta il 9 mag 2022
P2Package: coreType: bughelp wanted
Metriche repository
- Star
- (20.263 star)
- Metriche merge PR
- (Merge medio 43g 10h) (27 PR mergiate in 30 g)
Descrizione
Environment
- Package version(s):
@blueprintjs/core 4.3.0
Steps to reproduce
- Use a
FormGroupwith bothinlineandsubLabelprops.
<FormGroup
inline={true}
label="Label"
labelFor="text-input"
labelInfo="(required)"
subLabel="Label helper text with details..."
>
<InputGroup id="text-input" placeholder="Placeholder text" />
</FormGroup>
Actual behavior
Screenshot from the docs example page:

Expected behavior
The subLabel appears aligned with something, so either:
- The
subLabelappears below thelabel/labelInfo? - The
subLabelappears above the input?