fix: handle None price_annual in signup template
Add fallback for tiers without annual pricing (like Enterprise) and add € currency symbol to prices. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -87,10 +87,10 @@
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<template x-if="!isAnnual">
|
||||
<span class="text-xl font-bold text-gray-900 dark:text-white">{{ tier.price_monthly }}/mo</span>
|
||||
<span class="text-xl font-bold text-gray-900 dark:text-white">€{{ tier.price_monthly|int }}/mo</span>
|
||||
</template>
|
||||
<template x-if="isAnnual">
|
||||
<span class="text-xl font-bold text-gray-900 dark:text-white">{{ (tier.price_annual / 12)|round(0)|int }}/mo</span>
|
||||
<span class="text-xl font-bold text-gray-900 dark:text-white">€{{ ((tier.price_annual or tier.price_monthly * 12) / 12)|round(0)|int }}/mo</span>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user