|
|
|
@ -33,6 +33,7 @@ import { FloatLabelType, MatFormFieldAppearance, SubscriptSizing } from '@angula |
|
|
|
import { coerceArray, coerceBoolean } from '@shared/decorators/coercion'; |
|
|
|
import { PageLink } from '@shared/models/page/page-link'; |
|
|
|
import { PageData } from '@shared/models/page/page-data'; |
|
|
|
import { UtilsService } from '@core/services/utils.service'; |
|
|
|
|
|
|
|
@Component({ |
|
|
|
selector: 'tb-entity-subtype-list', |
|
|
|
@ -129,6 +130,7 @@ export class EntitySubTypeListComponent implements ControlValueAccessor, OnInit, |
|
|
|
private edgeService: EdgeService, |
|
|
|
private entityViewService: EntityViewService, |
|
|
|
private alarmService: AlarmService, |
|
|
|
private utils: UtilsService, |
|
|
|
private fb: FormBuilder) { |
|
|
|
this.entitySubtypeListFormGroup = this.fb.group({ |
|
|
|
entitySubtypeList: [this.entitySubtypeList, this.required ? [Validators.required] : []], |
|
|
|
@ -372,4 +374,8 @@ export class EntitySubTypeListComponent implements ControlValueAccessor, OnInit, |
|
|
|
}, 0); |
|
|
|
} |
|
|
|
|
|
|
|
customTranslate(entity: string) { |
|
|
|
return this.utils.customTranslation(entity, entity); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|