Skip to content

Commit

Permalink
Fix based on #6872
Browse files Browse the repository at this point in the history
Thanks to @bhavyakaria for identifying and providing a PR.
  • Loading branch information
janechu committed May 30, 2024
1 parent 87a885c commit 099e2a1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -551,9 +551,9 @@ So far, our bindings and directives have only affected elements within the Shado
const template = html<MyProgress>`
<template (Represents my-progress element)
role="progressbar"
$aria-valuenow={x => x.value}
$aria-valuemin={x => x.min}
$aria-valuemax={x => x.max}>
aria-valuenow=${x => x.value}
aria-valuemin=${x => x.min}
aria-valuemax=${x => x.max}>
(template targeted at Shadow DOM here)
</template>
`;
Expand Down

0 comments on commit 099e2a1

Please sign in to comment.