mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
0ae6d81ed2
If a directive has an input declared as `dismissible = input<boolean>(true, {transform: booleanAttribute});` then the following templates were not compiling:
```
<div directiveName dismissible="true"></div>
<div directiveName dismissible></div>
```
This commit fixes the issue, without breaking contravariant consumers.