diff options
| author | Luke "Jared" Bennett <lbennett@gitlab.com> | 2017-08-10 12:27:04 +0100 |
|---|---|---|
| committer | Luke "Jared" Bennett <lbennett@gitlab.com> | 2017-08-10 12:27:04 +0100 |
| commit | ae777fb1cedcc4cbcf77f9652cb25e038899ef5b (patch) | |
| tree | 5e88df3eb9aff766505b334ef3f348a0fef5a5e2 | |
| parent | 4c7ada21c0502879ae8700225723043df864c490 (diff) | |
| download | gitlab-ce-ae777fb1cedcc4cbcf77f9652cb25e038899ef5b.tar.gz | |
Correct repo.vue template
| -rw-r--r-- | app/assets/javascripts/repo/components/repo.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/repo/components/repo.vue b/app/assets/javascripts/repo/components/repo.vue index 703da749ad3..bb47a481225 100644 --- a/app/assets/javascripts/repo/components/repo.vue +++ b/app/assets/javascripts/repo/components/repo.vue @@ -46,7 +46,9 @@ export default { <div class="repository-view tree-content-holder"> <repo-sidebar/><div class="panel-right" :class="{'edit-mode': editMode}"> <repo-tabs/> - <component :is="currentBlobView" class="blob-viewer-container"></component> + <component + :is="currentBlobView" + class="blob-viewer-container"/> <repo-file-buttons/> </div> <repo-commit-section/> |
