Change button text on package-detail

This commit is contained in:
Thomas Smith 2022-12-05 12:06:06 -05:00
parent eefc995bd5
commit 7c7cd90bc1
2 changed files with 8 additions and 2 deletions

View file

@ -23,6 +23,12 @@
</div> </div>
</section> </section>
<script>
document.getElementById("detail-btn-large").innerHTML = "View Package.yml";
</script>
<!-- Copy to clipboard field --> <!-- Copy to clipboard field -->
<section> <section>

View file

@ -1,3 +1,3 @@
<a target="_blank" href="{{- . -}}"> <a target="_blank" href="{{- . -}}">
<button class="detail-btn-large"><i class="icon-enter-arrow"></i>VIEW ALL DETAILS</button> <button class="detail-btn-large" id="detail-btn-large"><i class="icon-enter-arrow"></i>VIEW ALL DETAILS</button>
</a> </a>