You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may not be the only instance but as one example:
{% if data.related_item_host_display_label|length < 0 and data.related_item_host_title_info_title|length > 0 %}
<h6>Related Item Host Title Info: </h6><p>{{ data.related_item_host_title_info_title }}</p>
{% endif %}
The above doesn't check for null values and results in an empty body so it could for example be fixed by:
{% if (data.related_item_host_display_label|length < 0 or data.related_item_host_display_label is null) and data.related_item_host_title_info_title|length > 0 %}
<h6>Related Item Host Title Info: </h6><p>{{ data.related_item_host_title_info_title }}</p>
{% endif %}
Example object that illustrates the problem is Mechanics' Institute Quarterly, Vol. 2 No. 2
This will require more checking through the rest of the Additional Information logic.
The text was updated successfully, but these errors were encountered:
What?
This may not be the only instance but as one example:
The above doesn't check for null values and results in an empty body so it could for example be fixed by:
Example object that illustrates the problem is Mechanics' Institute Quarterly, Vol. 2 No. 2
This will require more checking through the rest of the Additional Information logic.
The text was updated successfully, but these errors were encountered: