multi select style, remove mention legales link

This commit is contained in:
Tykayn 2025-09-26 12:45:52 +02:00 committed by tykayn
parent 2303c9d612
commit 6380dcc647
3 changed files with 5 additions and 8 deletions

View file

@ -13,11 +13,11 @@ export class MultiSelector implements OnInit {
@Input() disabled: boolean = false;
@Input() label!: string;
@Input() availableChoices: any = [{
label : 'aaaaaa',
label: 'aaaaaa',
value: 'AAAAA'
}];
@Input() selectedChoices: any = [ ];
@Input() displayDropdown: boolean = true;
@Input() selectedChoices: any = [];
@Input() displayDropdown: boolean = false;
@Input() store: any;
@Input() actionTypes: any;
@ -28,7 +28,7 @@ export class MultiSelector implements OnInit {
searchText: string = '';
constructor() {
}
}
ngOnInit() {
console.log('constructor multi selector', this.label, this.availableChoices, this.selectedChoices);