-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(select): value update not being propagated when selected option is removed or added #9104
base: main
Are you sure you want to change the base?
Conversation
Fixes selected options that are removed from the DOM not being removed from the model. Relates to angular#9104.
Fixes selected options that are removed from the DOM not being removed from the model. Relates to angular#9104.
Fixes selected options that are removed from the DOM not being removed from the model. Relates to angular#9104.
Fixes selected options that are removed from the DOM not being removed from the model. Relates to angular#9104.
…oy (angular#9106) Fixes selected options that are removed from the DOM not being removed from the model. Relates to angular#9104.
…oy (angular#9106) Fixes selected options that are removed from the DOM not being removed from the model. Relates to angular#9104.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@crisbeto it looks like this has the side-effect of causing the select to emit a (was caught by an internal test) |
@jelbourn do you have any more info on the test? I wasn't able to reproduce it in a test or in the demo app in a few scenarios (single selection, multiple selection and without Angular forms). Here's what my test looks like: it('should not emit the `selectionChange` event for the preselected value', fakeAsync(() => {
const fixture = TestBed.createComponent(BasicSelectWithoutFormsPreselected);
fixture.detectChanges();
flush();
expect(fixture.componentInstance.selectionChangeSpy).not.toHaveBeenCalled();
}));
@Component({
template: `
<mat-form-field>
<mat-select placeholder="Food" [(value)]="selectedFood"
(selectionChange)="selectionChangeSpy()">
<mat-option *ngFor="let food of foods" [value]="food.value">
{{ food.viewValue }}
</mat-option>
</mat-select>
</mat-form-field>
`
})
class BasicSelectWithoutFormsPreselected {
selectedFood = 'pizza-1';
selectionChangeSpy = jasmine.createSpy('selectionChange spy');
foods: any[] = [
{ value: 'steak-0', viewValue: 'Steak' },
{ value: 'pizza-1', viewValue: 'Pizza' },
];
@ViewChild(MatSelect) select: MatSelect;
} |
In the test that was failing for this, it was a select inside of |
Any news on this? |
…s removed or added Fixes the select not propagating its value back up to the value accessor if a selected option is added or removed. Previously this only happened the next time the user interacted with an option. Fixes angular#9038.
4903636
to
ad8997f
Compare
any updates here? |
Fixes the select not propagating its value back up to the value accessor if a selected option is added or removed. Previously this only happened the next time the user interacted with an option.
Fixes #9038.