diff options
author | Bryce Johnson <bryce@gitlab.com> | 2016-09-29 19:58:09 +0200 |
---|---|---|
committer | Bryce Johnson <bryce@gitlab.com> | 2016-10-05 11:25:05 +0200 |
commit | 14d681ebc8cb777cc03b0099d603c3e3dd2e7579 (patch) | |
tree | eaf15945795ab7c2657e3ce56be48c1908c99949 /app/assets/javascripts/templates | |
parent | 5ef3e8669db802e2355fd8dea1bef68ea7a48726 (diff) | |
download | gitlab-ce-14d681ebc8cb777cc03b0099d603c3e3dd2e7579.tar.gz |
Refactor TemplateSelector and fix for tests.
Diffstat (limited to 'app/assets/javascripts/templates')
-rw-r--r-- | app/assets/javascripts/templates/issuable_template_selector.js.es6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/templates/issuable_template_selector.js.es6 b/app/assets/javascripts/templates/issuable_template_selector.js.es6 index 017008c8438..f2a55f9caa0 100644 --- a/app/assets/javascripts/templates/issuable_template_selector.js.es6 +++ b/app/assets/javascripts/templates/issuable_template_selector.js.es6 @@ -1,7 +1,7 @@ /*= require ../blob/template_selector */ ((global) => { - class IssuableTemplateSelector extends TemplateSelector { + class IssuableTemplateSelector extends gl.TemplateSelector { constructor(...args) { super(...args); this.projectPath = this.dropdown.data('project-path'); |