trigger
prop of the accordion-item
.
{% set trigger1 %}
{% include '@bolt-elements-type/type.twig' with {
content: 'What are the different ways we can debug an issue in Rest OR SOAP Connector?',
weight: 'bold',
tag: 'h2',
size: 'medium',
color: 'navy',
} only %}
{% endset %}
{% set items %}
{% include '@bolt-components-accordion/accordion-item.twig' with {
trigger: trigger1,
content: 'You can debug the issues in connector through: 1) Tracing the connector activity if it is invoking through activity; 2) Add log message to the activity to check for logs; 3) If it is invoking through Data page, use response data transform to check for issues using when rules and invoke standard data transform template for logging along with email notification.',
} only %}
...
{% endset %}
{% include '@bolt-components-accordion/accordion.twig' with {
content: items,
box_shadow: true,
} only %}