Back to Super Productivity

Issue Provider Tab.Component

src/app/features/issue-panel/issue-provider-tab/issue-provider-tab.component.html

18.4.4704 B
Original Source

@let ip = issueProvider();@if (ip.isEnabled) { @if (ip.issueProviderKey === 'JIRA' && IS_WEB_EXTENSION_REQUIRED_FOR_JIRA) {

} @if (useAgendaView()) { } @else { Searchsearch @if (isPinned()) { bookmark } @else if ( ip?.pinnedSearch?.length || searchText()?.length >= SEARCH_MIN_LENGTH ) { bookmark_add } @if (searchText().length === 0 && issueProviderHelpLink()) { {{ ISSUE_PROVIDER_HUMANIZED[ip.issueProviderKey] || ip.issueProviderKey }} search syntax } } @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) { } } }