summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-04-05 10:46:19 +0100
committerPhil Hughes <me@iamphill.com>2018-04-05 14:23:22 +0100
commit26901470ae8af7d4911843b6de92a6110cb71fe4 (patch)
tree98b34d98bd6c96313ed04d20cae6960e441172d3 /app
parent55c6b8b12cc4a9e1a271c22dda5c7124c3e96ff7 (diff)
downloadgitlab-ce-26901470ae8af7d4911843b6de92a6110cb71fe4.tar.gz
fixed typo in selector
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/ide/components/commit_sidebar/empty_state.vue6
-rw-r--r--app/assets/stylesheets/pages/repo.scss2
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 {
<template>
<div
- class="multi-file-commit-panel-section ide-commity-empty-state js-empty-state"
+ class="multi-file-commit-panel-section ide-commit-empty-state js-empty-state"
>
<header
class="multi-file-commit-panel-header"
diff --git a/app/assets/stylesheets/pages/repo.scss b/app/assets/stylesheets/pages/repo.scss
index 8f79ea90cc5..297b3c06bf3 100644
--- a/app/assets/stylesheets/pages/repo.scss
+++ b/app/assets/stylesheets/pages/repo.scss
@@ -465,7 +465,7 @@
overflow: auto;
}
-.ide-commity-empty-state {
+.ide-commit-empty-state {
padding: 0 $gl-padding;
}