diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/custom-measures/list-footer-view.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/custom-measures/list-footer-view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/custom-measures/list-footer-view.js b/server/sonar-web/src/main/js/apps/custom-measures/list-footer-view.js index e917ddb294a..24906a35318 100644 --- a/server/sonar-web/src/main/js/apps/custom-measures/list-footer-view.js +++ b/server/sonar-web/src/main/js/apps/custom-measures/list-footer-view.js @@ -1,9 +1,9 @@ import _ from 'underscore'; import Marionette from 'backbone.marionette'; -import './templates'; +import Template from './templates/custom-measures-list-footer.hbs'; export default Marionette.ItemView.extend({ - template: Templates['custom-measures-list-footer'], + template: Template, collectionEvents: { 'all': 'render' |