Remove unused @Input() decorator on multi-select (#8396)

This commit is contained in:
Thomas Rittson 2024-04-03 09:27:49 +10:00 committed by GitHub
parent 45dc244cc4
commit e79662adf7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export class MultiSelectComponent implements OnInit, BitFormFieldControl, Contro
@Input() disabled = false;
// Internal tracking of selected items
@Input() selectedItems: SelectItemView[];
protected selectedItems: SelectItemView[];
// Default values for our implementation
loadingText: string;