[AAE-6807] Remove test code

This commit is contained in:
Rubén Barroso
2022-05-09 15:47:03 +02:00
parent b55a54b84e
commit d4fe4a0869

View File

@@ -39,12 +39,6 @@ export const HIDE_FILTER_LIMIT = 5;
/* eslint-disable @angular-eslint/component-selector */
interface Food {
value: string;
viewValue: string;
}
@Component({
selector: 'dropdown-cloud-widget',
templateUrl: './dropdown-cloud.widget.html',
@@ -70,12 +64,6 @@ export class DropdownCloudWidgetComponent extends WidgetComponent implements OnI
list$: Observable<FormFieldOption[]>;
filter$ = new BehaviorSubject<string>('');
foods: Food[] = [
{value: 'steak-0', viewValue: 'Steak'},
{value: 'pizza-1', viewValue: 'Pizza'},
{value: 'tacos-2', viewValue: 'Tacos'},
];
protected onDestroy$ = new Subject<boolean>();
constructor(public formService: FormService,