Skip to content
Snippets Groups Projects
Commit 2499eef1 authored by JordiMForgeFlow's avatar JordiMForgeFlow
Browse files

[FIX] sale: truncate quotation amount in kanban view

Currently, the quotation amount field added in the CRM Sales Teams Kanban view is overflowing the kanban card once the number is too large.

The fix adds the class text-truncate in the corresponding div to avoid the overflow. Notice that this class is the one already used in the parent view implemented in the CRM module, for the other amount fields.

X-original-commit: 14915f4b
parent baebf581
Branches
Tags
No related merge requests found
......@@ -66,7 +66,7 @@
<t t-else="">Quotations</t>
</a>
</div>
<div class="col-4 text-right">
<div class="col-4 text-right text-truncate">
<field name="quotations_amount" widget="monetary"/>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment