docs: Fix Property Binding (#60725)

PR Close #60725
This commit is contained in:
LC 2025-04-03 09:51:21 +01:00 committed by Andrew Scott
parent 4e88e18a8e
commit 43cc57b7e8

View file

@ -34,7 +34,7 @@ Next, bind the `contentEditable` attribute of the `div` to the `isEditable` prop
<docs-code highlight="[3]" language="angular-ts">
@Component({
...
template: `<div [contentEditable]="{{isEditable}}"></div>`,
template: `<div [contentEditable]="isEditable"></div>`,
})
</docs-code>
</docs-step>