Browse Source

Merge pull request #8278 from YevhenBondarenko/fix/entity-subtype-autocomplete

[3.5]minor ui fixes
pull/8286/head
Igor Kulikov 3 years ago
committed by GitHub
parent
commit
1586415303
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ui-ngx/src/app/shared/components/entity/entity-subtype-autocomplete.component.ts

4
ui-ngx/src/app/shared/components/entity/entity-subtype-autocomplete.component.ts

@ -37,7 +37,7 @@ import { coerceBooleanProperty } from '@angular/cdk/coercion';
import { AssetService } from '@core/http/asset.service';
import { EntityViewService } from '@core/http/entity-view.service';
import { EdgeService } from '@core/http/edge.service';
import { MatFormFieldAppearance } from '@angular/material/form-field/form-field';
import { MatFormFieldAppearance } from '@angular/material/form-field';
@Component({
selector: 'tb-entity-subtype-autocomplete',
@ -76,7 +76,7 @@ export class EntitySubTypeAutocompleteComponent implements ControlValueAccessor,
excludeSubTypes: Array<string>;
@Input()
appearance: MatFormFieldAppearance = 'legacy';
appearance: MatFormFieldAppearance = 'fill';
@ViewChild('subTypeInput', {static: true}) subTypeInput: ElementRef;

Loading…
Cancel
Save