Skip to content

Commit

Permalink
fix(SFT-1633): Form link in submission details page (#1673)
Browse files Browse the repository at this point in the history
  • Loading branch information
seandelaney authored Dec 10, 2024
1 parent 39c4962 commit de132ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/plugin/src/templates/submissions/edit.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% set crumbs = crumbs|default([
{ label: craft.freeform.name, url: url('freeform') },
{ label: "Forms"|t("freeform"), url: url('freeform/forms') },
{ label: submission.form.name, url: url('freeform/forms/' ~ submission.getForm().id) },
{ label: form.name, url: url('freeform/forms/' ~ form.id) },
{ label: "Submissions"|t('freeform'), url: url('freeform/submissions') },
]) %}

Expand Down Expand Up @@ -175,7 +175,7 @@
<label>{{ 'Form'|t('freeform') }}</label>
</div>
<div class="input ltr">
<span class="status green" style="background: {{ form.color }};"></span><a href="{{ url('freeform/submissions/&source=form%3A' ~ form.id) }}">{{ form.name }}</a>
<span class="status green" style="background: {{ form.color }};"></span><a href="{{ url('freeform/forms/' ~ form.id) }}">{{ form.name }}</a>
</div>
</div>

Expand Down

0 comments on commit de132ae

Please sign in to comment.