feature-libs/organization/administration/components/cost-center/budgets/cost-center-budget-list.component.ts
| changeDetection | ChangeDetectionStrategy.OnPush |
| host | { |
| providers |
{
provide: ListService, useExisting: CostCenterBudgetListService,
}
|
| selector | cx-org-cost-center-budget-list |
| templateUrl | ./cost-center-budget-list.component.html |
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { ListService } from '../../shared/list/list.service';
import { CostCenterBudgetListService } from './cost-center-budget-list.service';
@Component({
selector: 'cx-org-cost-center-budget-list',
templateUrl: './cost-center-budget-list.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
host: { class: 'content-wrapper' },
providers: [
{
provide: ListService,
useExisting: CostCenterBudgetListService,
},
],
})
export class CostCenterBudgetListComponent {}
<cx-org-sub-list [previous]="false">
<a actions class="link" routerLink="../">
{{ 'organization.done' | cxTranslate }}
</a>
</cx-org-sub-list>