fix: strip HTML tags from event description in calendar list view
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
3d462d52f8
commit
ee2d4e039d
@ -457,7 +457,7 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if event.description %}
|
||||
<div class="event-description">{{ event.description[:150] }}{% if event.description|length > 150 %}...{% endif %}</div>
|
||||
<div class="event-description">{{ event.description|striptags|truncate(150, True) }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div class="event-actions">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user