Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add failed status support #18

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add fallback case
  • Loading branch information
DavidBadura committed Dec 31, 2024
commit 596b56e5c37b04df6d219988794bd955a819f221
2 changes: 2 additions & 0 deletions templates/subscription/show.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@
{{ _self.badge('Error', 'fill-red-500') }}
{% elseif subscription.status.value == 'failed' %}
{{ _self.badge('Failed', 'fill-red-500') }}
{% else %}
{{ _self.badge(subscription.status.value, 'fill-gray-500') }}
{% endif %}
</td>
<td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
Expand Down
Loading