Shopping cart dropdown changes
diff --git a/erpnext/templates/includes/issue_row.html b/erpnext/templates/includes/issue_row.html
index 5414d7c..f19ea85 100644
--- a/erpnext/templates/includes/issue_row.html
+++ b/erpnext/templates/includes/issue_row.html
@@ -1,13 +1,14 @@
<div class="web-list-item transaction-list-item">
<a href="/issues?name={{ doc.name }}">
<div class="row">
- <div class="col-xs-8">
+ <div class="col-xs-3">
<span class="indicator {{ "red" if doc.status=="Open" else "darkgrey" }}">
{{ doc.name }}</span>
- <div class="items-preview text-ellipsis">
+ </div>
+ <div class="col-xs-6 items-preview text-ellipsis">
{{ doc.subject }}</div>
- </div>
- <div class="col-xs-4 text-right small text-muted">
+
+ <div class="col-xs-3 text-right small text-muted">
{{ frappe.format_date(doc.modified) }}
</div>
</div>