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

[3.5]minor ui fixes
This commit is contained in:
Igor Kulikov 2023-03-28 23:30:14 +03:00 committed by GitHub
commit 1586415303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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