Skip to content

Commit

Permalink
fix closed form (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
madassdev authored Oct 10, 2024
1 parent dea8fe5 commit 2ab5e09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/components/open/forms/OpenCompleteForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
class="border shadow-sm p-2 my-4 flex items-center rounded-md bg-yellow-100 dark:bg-yellow-600/20 border-yellow-500 dark:border-yellow-500/20"
>
<div class="flex-grow">
<p
<div
class="mb-0 py-2 px-4 text-yellow-600"
v-html="form.closed_text"
/>
Expand Down Expand Up @@ -100,7 +100,7 @@
key="form"
>
<open-form
v-if="form"
v-if="form && !form.is_closed"
:form="form"
:loading="loading"
:fields="form.properties"
Expand Down

0 comments on commit 2ab5e09

Please sign in to comment.