From 26901470ae8af7d4911843b6de92a6110cb71fe4 Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Thu, 5 Apr 2018 10:46:19 +0100 Subject: [PATCH] fixed typo in selector --- .../ide/components/commit_sidebar/empty_state.vue | 6 ++---- app/assets/stylesheets/pages/repo.scss | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/app/assets/javascripts/ide/components/commit_sidebar/empty_state.vue b/app/assets/javascripts/ide/components/commit_sidebar/empty_state.vue index 440f360280f..6424b93ce54 100644 --- a/app/assets/javascripts/ide/components/commit_sidebar/empty_state.vue +++ b/app/assets/javascripts/ide/components/commit_sidebar/empty_state.vue @@ -24,9 +24,7 @@ export default { ...mapState(['lastCommitMsg', 'rightPanelCollapsed']), ...mapGetters(['collapseButtonIcon', 'collapseButtonTooltip']), statusSvg() { - return this.lastCommitMsg - ? this.committedStateSvgPath - : this.noChangesStateSvgPath; + return this.lastCommitMsg ? this.committedStateSvgPath : this.noChangesStateSvgPath; }, }, methods: { @@ -37,7 +35,7 @@ export default {