Skip to content

Commit 099e2a1

Browse files
committed
Fix based on #6872
Thanks to @bhavyakaria for identifying and providing a PR.
1 parent 87a885c commit 099e2a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sites/website/versioned_docs/version-1.0.0/fast-element/using-directives.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -551,9 +551,9 @@ So far, our bindings and directives have only affected elements within the Shado
551551
const template = html<MyProgress>`
552552
<template (Represents my-progress element)
553553
role="progressbar"
554-
$aria-valuenow={x => x.value}
555-
$aria-valuemin={x => x.min}
556-
$aria-valuemax={x => x.max}>
554+
aria-valuenow=${x => x.value}
555+
aria-valuemin=${x => x.min}
556+
aria-valuemax=${x => x.max}>
557557
(template targeted at Shadow DOM here)
558558
</template>
559559
`;

0 commit comments

Comments
 (0)