[portal] fix item-preview column #13077
diff --git a/erpnext/templates/includes/issue_row.html b/erpnext/templates/includes/issue_row.html
index c0b0d2b..eb5c0a4 100644
--- a/erpnext/templates/includes/issue_row.html
+++ b/erpnext/templates/includes/issue_row.html
@@ -5,9 +5,9 @@
<span class="indicator {{ "red" if doc.status=="Open" else "darkgrey" }}">
{{ doc.name }}</span>
</div>
- <div class="col-xs-6 items-preview ellipsis">
+ <div class="col-xs-6 items-preview ellipsis ellipsis-width">
{{ doc.subject }}</div>
-
+
<div class="col-xs-3 text-right small text-muted">
{{ frappe.format_date(doc.modified) }}
</div>
diff --git a/erpnext/templates/includes/transaction_row.html b/erpnext/templates/includes/transaction_row.html
index 0e47f7d..6c58b51 100644
--- a/erpnext/templates/includes/transaction_row.html
+++ b/erpnext/templates/includes/transaction_row.html
@@ -10,7 +10,7 @@
</div>
</div>
<div class="col-sm-5">
- <div class="small text-muted items-preview ellipsis">
+ <div class="small text-muted items-preview ellipsis ellipsis-width">
{{ doc.items_preview }}
</div>
</div>