Closed (fixed)
Project:
Form Tips
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Jun 2021 at 13:52 UTC
Updated:
23 Feb 2024 at 11:49 UTC
Jump to comment: Most recent, Most recent file

Comments
Comment #2
matsbla commentedAt least I see a tooltip on the body field even though the description field is empty
Comment #3
matsbla commentedComment #4
u_tiwari commentedThis will prevent duplicate question marks in front of the Summary field.
Comment #5
matsbla commentedThis patch solves the issue, thanks!
Comment #6
matsbla commentedComment #9
astonvictor commentedWe shouldn't remove the form tip for the summary field.
There is another issue with the formatted text widget. The description of the field has
edit-{FIELD_NAME}-0--descriptionid and we try to get label by[for="' + edit-{FIELD_NAME}-0 + '"]selector that doesn't exist because the field hasedit-{FIELD_NAME}-0-valueselector.I added additional validation for the selector. Please, check if the MR works for you.
FYI the body field can have two form tips:
- description from the help text;
- info about text formats.
Note that for the second form tip, I had an empty output because all children
$('.filter-guidelines').children()havedisplay:none;style. I fixed it by adding theshow()method.Comment #10
astonvictor commentedComment #11
astonvictor commentedComment #12
astonvictor commentedMerged the MR.
Changes will be added to the next release.