fix: step 6 tutorial docs (#60630)

PR Close #60630
This commit is contained in:
EriksonBahr 2025-03-30 16:46:31 -03:00 committed by Jessica Janiuk
parent 8b529debf9
commit a7d1293f75

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>