Skip to content

Commit

Permalink
fixed recurring send email input value issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CihanSenturk committed Oct 23, 2023
1 parent b34b50f commit 2256564
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -66,6 +66,7 @@
:started-value="$recurring_transaction ? $recurring_transaction->recurring->started_at : null"
:limit-count="$recurring_transaction ? $recurring_transaction->recurring->limit_count : null"
:limit-date-value="$recurring_transaction ? $recurring_transaction->recurring->limit_date : null"
:send-email="$recurring_transaction ? $recurring_transaction->recurring->auto_send : null"
/>
</x-slot>
</x-form.section>
Expand Down
Expand Up @@ -17,6 +17,7 @@
:started-value="$document ? $document->recurring->started_at : null"
:limit-count="$document ? $document->recurring->limit_count : null"
:limit-date-value="$document ? $document->recurring->limit_date : null"
:send-email="$document ? $document->recurring->auto_send : null"
/>
@endif
</x-slot>
Expand Down

0 comments on commit 2256564

Please sign in to comment.