-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ISSUE-136: Adds '#description_display' => 'before' to avoid warning #137
Conversation
We are not even using #description but seems like #description_display IS required. Will test more
@DiegoPino Still seeing the warning here in my logs. Taking a closer look at the code now. |
Please share the warnings when you can. Might be also that the form is still cached? |
Seeing the below after clearing cache:
|
Yes, but there is more, look at the rest of the message, that is where it fails but not the controller/our code that triggers it |
Sorry, here's the full warning:
|
@DiegoPino I've narrowed it down to line 280-281: '#description' => t('This data structure will contain the original values (before modification) of an ADO only when updating. Sadly we can not at this time preview it during an AMI set preview.'),
'#rows' => 60, If I add the '#description' => t('This data structure will contain the original values (before modification) of an ADO only when updating. Sadly we can not at this time preview it during an AMI set preview.'),
'#description_display' => 'before',
'#rows' => 60, |
ha! so I missed one! Good catch. Will fix. Thanks! |
@aksm wonder if we need to do a whole inspection. We might have this in other places too. I will open a larger issue and do that. So strange Code Mirror requires this too! Thanks Co-Authored-By: Albert Min <albert.min@gmail.com>
See #136
We are not even using #description but seems like #description_display IS required. Will test more