From 948187430ac1be14557fce144481f7c0df1f5a97 Mon Sep 17 00:00:00 2001 From: YevhenBondarenko Date: Tue, 28 Mar 2023 20:41:31 +0200 Subject: [PATCH] minor ui fixes --- .../entity/entity-subtype-autocomplete.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui-ngx/src/app/shared/components/entity/entity-subtype-autocomplete.component.ts b/ui-ngx/src/app/shared/components/entity/entity-subtype-autocomplete.component.ts index 285bad2e63..3c28d9ceaa 100644 --- a/ui-ngx/src/app/shared/components/entity/entity-subtype-autocomplete.component.ts +++ b/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; @Input() - appearance: MatFormFieldAppearance = 'legacy'; + appearance: MatFormFieldAppearance = 'fill'; @ViewChild('subTypeInput', {static: true}) subTypeInput: ElementRef;