fixed typo in selector
This commit is contained in:
parent
55c6b8b12c
commit
26901470ae
2 changed files with 3 additions and 5 deletions
|
@ -24,9 +24,7 @@ export default {
|
||||||
...mapState(['lastCommitMsg', 'rightPanelCollapsed']),
|
...mapState(['lastCommitMsg', 'rightPanelCollapsed']),
|
||||||
...mapGetters(['collapseButtonIcon', 'collapseButtonTooltip']),
|
...mapGetters(['collapseButtonIcon', 'collapseButtonTooltip']),
|
||||||
statusSvg() {
|
statusSvg() {
|
||||||
return this.lastCommitMsg
|
return this.lastCommitMsg ? this.committedStateSvgPath : this.noChangesStateSvgPath;
|
||||||
? this.committedStateSvgPath
|
|
||||||
: this.noChangesStateSvgPath;
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -37,7 +35,7 @@ export default {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<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
|
<header
|
||||||
class="multi-file-commit-panel-header"
|
class="multi-file-commit-panel-header"
|
||||||
|
|
|
@ -465,7 +465,7 @@
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ide-commity-empty-state {
|
.ide-commit-empty-state {
|
||||||
padding: 0 $gl-padding;
|
padding: 0 $gl-padding;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue