@let ip = issueProvider();
@if (ip.isEnabled) {
@if (ip.issueProviderKey === 'JIRA' && IS_WEB_EXTENSION_REQUIRED_FOR_JIRA) {
}
@if (useAgendaView()) {
} @else {
}
@if (isLoading()) {
} @else if (error()) {
} @else if (!issueItems()?.length && searchText()?.length > 0) {
No items found (already added are not shown)
} @else {
@for (item of issueItems(); track item.issueData.id) {
}
}
}