diff --git a/crm/fcrm/doctype/crm_deal/crm_deal.py b/crm/fcrm/doctype/crm_deal/crm_deal.py
index dc18c133..04bf74fd 100644
--- a/crm/fcrm/doctype/crm_deal/crm_deal.py
+++ b/crm/fcrm/doctype/crm_deal/crm_deal.py
@@ -139,6 +139,7 @@ class CRMDeal(Document):
'label': 'Amount',
'type': 'Currency',
'key': 'annual_revenue',
+ 'align': 'right',
'width': '9rem',
},
{
diff --git a/frontend/src/components/ColumnSettings.vue b/frontend/src/components/ColumnSettings.vue
index d91ce735..438e7eaf 100644
--- a/frontend/src/components/ColumnSettings.vue
+++ b/frontend/src/components/ColumnSettings.vue
@@ -49,7 +49,9 @@
-
+
{
})
function addColumn(c) {
+ let align = ['Float', 'Int', 'Percent', 'Currency'].includes(c.type) ? 'right' : 'left'
let _column = {
label: c.label,
type: c.type,
key: c.value,
width: '10rem',
+ align,
}
columns.value.push(_column)
rows.value.push(c.value)
diff --git a/frontend/src/components/ListViews/CallLogsListView.vue b/frontend/src/components/ListViews/CallLogsListView.vue
index 4331237b..1522e0a5 100644
--- a/frontend/src/components/ListViews/CallLogsListView.vue
+++ b/frontend/src/components/ListViews/CallLogsListView.vue
@@ -38,7 +38,7 @@
v-slot="{ idx, column, item }"
doctype="CRM Call Log"
>
-
+
-
+
-
+
diff --git a/frontend/src/components/ListViews/EmailTemplatesListView.vue b/frontend/src/components/ListViews/EmailTemplatesListView.vue
index 52931cbb..2d937cb8 100644
--- a/frontend/src/components/ListViews/EmailTemplatesListView.vue
+++ b/frontend/src/components/ListViews/EmailTemplatesListView.vue
@@ -37,7 +37,7 @@
v-slot="{ idx, column, item }"
doctype="Email Template"
>
-
+
diff --git a/frontend/src/components/ListViews/LeadsListView.vue b/frontend/src/components/ListViews/LeadsListView.vue
index ea79c83a..dccfe438 100644
--- a/frontend/src/components/ListViews/LeadsListView.vue
+++ b/frontend/src/components/ListViews/LeadsListView.vue
@@ -57,7 +57,7 @@
"
/>
-
+
diff --git a/frontend/src/components/ListViews/OrganizationsListView.vue b/frontend/src/components/ListViews/OrganizationsListView.vue
index 5cc57e49..8dfc0ae6 100644
--- a/frontend/src/components/ListViews/OrganizationsListView.vue
+++ b/frontend/src/components/ListViews/OrganizationsListView.vue
@@ -41,7 +41,7 @@
v-slot="{ idx, column, item }"
doctype="CRM Organization"
>
-
+
-
+