Skip to content

Commit 848efe1

Browse files
committed
fix(material/select): remove value from aria-labelledby
1 parent 7c57f82 commit 848efe1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/material/select/select.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1390,8 +1390,7 @@ export class MatSelect
13901390
return null;
13911391
}
13921392

1393-
const labelId = this._parentFormField?.getLabelId();
1394-
let value = (labelId ? labelId + ' ' : '') + this._valueId;
1393+
let value = this._parentFormField?.getLabelId() || '';
13951394

13961395
if (this.ariaLabelledby) {
13971396
value += ' ' + this.ariaLabelledby;

0 commit comments

Comments
 (0)