summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-04-29 18:32:55 +0100
committerPhil Hughes <me@iamphill.com>2018-04-29 18:32:55 +0100
commit15a8535f4a95723abfe1b3f112604b7388691f42 (patch)
tree2a1359b5e10471dc3cf2caab6c0af031133614f0
parentcb4a91e267da3d0d5adc6faf43ccb70ab3e686d6 (diff)
downloadgitlab-ce-15a8535f4a95723abfe1b3f112604b7388691f42.tar.gz
fixed undefined variable after variable name change
-rw-r--r--app/assets/javascripts/ide/components/activity_bar.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/ide/components/activity_bar.vue b/app/assets/javascripts/ide/components/activity_bar.vue
index 561ffde885a..e27404a08d3 100644
--- a/app/assets/javascripts/ide/components/activity_bar.vue
+++ b/app/assets/javascripts/ide/components/activity_bar.vue
@@ -56,9 +56,9 @@ export default {
type="button"
class="ide-sidebar-link js-ide-review-mode"
:class="{
- active: currentActivityView === $options.ActivityBarViews.review
+ active: currentActivityView === $options.activityBarViews.review
}"
- @click.prevent="updateActivityBarView($options.ActivityBarViews.review)"
+ @click.prevent="updateActivityBarView($options.activityBarViews.review)"
>
<icon
name="file-modified"