Skip to content

Commit

Permalink
removed name from span in start/end pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
eljefe223 committed May 6, 2020
1 parent 81e5faa commit 3072d5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class StartEnd {
}

export const endTemplate = html<StartEnd>`
<span class="end" name="end" part="end" ${ref("endContainer")}>
<span class="end" part="end" ${ref("endContainer")}>
<slot
name="end"
${ref("end")}
Expand All @@ -28,7 +28,7 @@ export const endTemplate = html<StartEnd>`
`;

export const startTemplate = html<StartEnd>`
<span class="start" name="start" part="start" ${ref("startContainer")}>
<span class="start" part="start" ${ref("startContainer")}>
<slot
name="start"
${ref("start")}
Expand Down

0 comments on commit 3072d5c

Please sign in to comment.