Browse Source
Merge pull request #24763 from abpframework/feature-management-fix
Remove unused template and NgStyle import
issue-24674
erdem
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
21 deletions
-
npm/ng-packs/packages/feature-management/src/lib/components/feature-management/feature-management.component.html
-
npm/ng-packs/packages/feature-management/src/lib/components/feature-management/feature-management.component.ts
|
|
|
@ -127,25 +127,7 @@ |
|
|
|
</div> |
|
|
|
} |
|
|
|
</div> |
|
|
|
|
|
|
|
<ng-template #descTmp let-description> |
|
|
|
@if (description) { |
|
|
|
<small class="d-block form-text text-muted">{{ description }}</small> |
|
|
|
} |
|
|
|
</ng-template> |
|
|
|
|
|
|
|
<div class="col-md-8"> |
|
|
|
<div class="py-0" [ngbNavOutlet]="nav"></div> |
|
|
|
</div> |
|
|
|
} |
|
|
|
|
|
|
|
@if (!groups.length) { |
|
|
|
<div class="col"> |
|
|
|
{{ 'AbpFeatureManagement::NoFeatureFoundMessage' | abpLocalization }} |
|
|
|
</div> |
|
|
|
} |
|
|
|
</div> |
|
|
|
</ng-template> |
|
|
|
</ng-template> |
|
|
|
|
|
|
|
<ng-template #abpFooter> |
|
|
|
<button abpClose type="button" class="btn btn-link"> |
|
|
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
|
import { Component, EventEmitter, Input, Output, inject, DOCUMENT } from '@angular/core'; |
|
|
|
import { NgTemplateOutlet, NgStyle } from '@angular/common'; |
|
|
|
import { NgTemplateOutlet } from '@angular/common'; |
|
|
|
import { FormsModule } from '@angular/forms'; |
|
|
|
import { ConfigStateService, LocalizationPipe, TrackByService } from '@abp/ng.core'; |
|
|
|
import { |
|
|
|
@ -36,7 +36,6 @@ const DEFAULT_PROVIDER_NAME = 'D'; |
|
|
|
exportAs: 'abpFeatureManagement', |
|
|
|
imports: [ |
|
|
|
NgTemplateOutlet, |
|
|
|
NgStyle, |
|
|
|
ButtonComponent, |
|
|
|
ModalComponent, |
|
|
|
LocalizationPipe, |
|
|
|
|