Skip to content

Commit

Permalink
add id to slots
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Jun 24, 2024
1 parent db7374a commit d836600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/peerpiper-wallet/src/templates/output.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<div>
<!-- Autoescape off so our html props get rendered -->
{% autoescape false %}
<h2 data-slot="seed">{{seed_ui.html}}</h2>
<h2 data-slot="seed" id="seed-slot">{{seed_ui.html}}</h2>
<!-- Check to see if there is a seed before showing the children -->
{% if has_seed is true %}
<!-- We know there's a seed if it has been emitted from seed-keeper -->
<div data-slot="delano">{{delano_ui.html}}</div>
<div data-slot="delano" id="delano-slot">{{delano_ui.html}}</div>
{% endif %}
<!---->
{% endautoescape %}
Expand Down

0 comments on commit d836600

Please sign in to comment.