I have a mat-select where the options are all objects defined in an array. I am trying to set the value to default to one of the options, however it is being left selected
You should be binding it as [value] in the mat-option as below,
[value]
mat-option
{{ option.name }}
LIVE DEMO