diff -r b4ed4ae6a6dc -r fbf4e1afab01 cms/app-client/app/templates/components/notice-component.hbs
--- a/cms/app-client/app/templates/components/notice-component.hbs Wed Feb 15 10:51:26 2017 +0100
+++ b/cms/app-client/app/templates/components/notice-component.hbs Wed Feb 15 22:53:45 2017 +0100
@@ -19,7 +19,7 @@
Langue |
- {{#each item.languages as |lang index|}}{{if index ", "}}{{ component (getLinkType lang) url=lang class="language" onClick=(action 'addLanguageFilter' lang) displayUrlLink=true}}{{/each}} |
+ {{#each item.languages as |lang index|}}{{if index ", "}}{{ component (get-link-type lang) url=lang class="language" onClick=(action 'addLanguageFilter' lang) displayUrlLink=true}}{{/each}} |
Sujet{{#if (if-operator item.subjects.length '>' 1)}}s{{/if}} |
@@ -27,7 +27,7 @@
{{#each item.subjects as |subject|}}
-
- {{component (getLinkType subject) url=subject onClick=(action "addThemeFilter" subject) displayUrlLink=true}}
+ {{component (get-link-type subject) url=subject onClick=(action "addThemeFilter" subject) displayUrlLink=true}}
{{/each}}
@@ -39,7 +39,7 @@
{{#each item.types as |type|}}
-
- {{component (getLinkType type) url=type onClick=(action "addThemeFilter" type) displayUrlLink=true}}
+ {{component (get-link-type type) url=type onClick=(action "addThemeFilter" type) displayUrlLink=true}}
{{/each}}
@@ -62,7 +62,7 @@
{{#each participants as |participant|}}
- - {{component (getLinkType participant.identifier) url=participant.identifier }} ({{#each participant.role as |r index| }}{{if index ", "}}{{r}}{{/each}})
+ - {{component (get-link-type participant.identifier) url=participant.identifier }} ({{#each participant.role as |r index| }}{{if index ", "}}{{r}}{{/each}})
{{/each}}
|