Skip to content

Commit

Permalink
Merge pull request #2360 from nextcloud/backport/2359/stable4
Browse files Browse the repository at this point in the history
[stable4] fix: show expiration message again in submit view
  • Loading branch information
Chartman123 authored Oct 11, 2024
2 parents d8772c2 + 3c962be commit 5753c3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/Submit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
class="form-desc"
dir="auto"
v-html="formDescription" />
<p v-if="isExpired" class="info-message">
<!-- Show expiration message-->
<p v-if="form.expires && form.showExpiration" class="info-message">
{{ expirationMessage }}
</p>
<!-- Generate form information message-->
Expand Down

0 comments on commit 5753c3b

Please sign in to comment.