diff --git a/client/src/collections/indicator_collection.coffee b/client/src/collections/indicator_collection.coffee
index 523b5c18..90fc5380 100644
--- a/client/src/collections/indicator_collection.coffee
+++ b/client/src/collections/indicator_collection.coffee
@@ -13,12 +13,12 @@ class Backbone.Collections.IndicatorCollection extends Backbone.Collection
url += "?withData=true"
url
- filterByTitle: (title='') ->
- title = title.trim()
+ filterByName: (name='') ->
+ name = name.trim()
- regexp = new RegExp(".*#{title}.*", 'i')
+ regexp = new RegExp(".*#{name}.*", 'i')
@filter( (indicator) ->
- regexp.test indicator.get('title')
+ regexp.test indicator.get('name')
)
filterByTheme: (theme) ->
diff --git a/client/src/templates/indicator_selector_item.hbs b/client/src/templates/indicator_selector_item.hbs
index 51911392..bbc111d3 100644
--- a/client/src/templates/indicator_selector_item.hbs
+++ b/client/src/templates/indicator_selector_item.hbs
@@ -1,2 +1,2 @@
-
{{short_name}}
-{{title}}
+{{shortName}}
+{{name}}
diff --git a/client/src/templates/report_edit_visualisation.hbs b/client/src/templates/report_edit_visualisation.hbs
index 1b513a1b..4d8e5527 100644
--- a/client/src/templates/report_edit_visualisation.hbs
+++ b/client/src/templates/report_edit_visualisation.hbs
@@ -1,7 +1,7 @@
{{{t "report/modal/close"}}}
- {{indicator.title}}
+ {{indicator.name}}
diff --git a/client/src/templates/table.hbs b/client/src/templates/table.hbs
index 9d96d73a..e359e7d5 100644
--- a/client/src/templates/table.hbs
+++ b/client/src/templates/table.hbs
@@ -1,5 +1,5 @@
- {{indicatorTitle}}
+ {{indicatorName}}
{{xAxis}} |
diff --git a/client/src/templates/visualisation.hbs b/client/src/templates/visualisation.hbs
index be239d1a..de33b46b 100644
--- a/client/src/templates/visualisation.hbs
+++ b/client/src/templates/visualisation.hbs
@@ -1,4 +1,4 @@
-{{indicator.title}}
+{{indicator.name}}
{{#if isEditable}}