summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-06-13 14:16:51 +0100
committerPhil Hughes <me@iamphill.com>2018-06-14 15:42:56 +0100
commit664003f5099a95419df1dc8f6006d97c37a00d57 (patch)
tree2173854bc88d51f5e4b471a008bd4f57512891fa
parent14412cbe6c50849a8717465c412433a7946592c1 (diff)
downloadgitlab-ce-664003f5099a95419df1dc8f6006d97c37a00d57.tar.gz
fixed eslint
-rw-r--r--app/assets/javascripts/ide/components/commit_sidebar/list.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/ide/components/commit_sidebar/list.vue b/app/assets/javascripts/ide/components/commit_sidebar/list.vue
index 62bff60cbd8..d323aab200c 100644
--- a/app/assets/javascripts/ide/components/commit_sidebar/list.vue
+++ b/app/assets/javascripts/ide/components/commit_sidebar/list.vue
@@ -91,28 +91,28 @@ export default {
{{ titleText }}
<div class="d-flex ml-auto">
<button
- v-show="fileList.length"
v-tooltip
- type="button"
- class="btn btn-default ide-staged-action-btn p-0 order-1 align-items-center"
+ v-show="fileList.length"
:class="{
'd-flex': fileList.length
}"
:title="actionBtnText"
+ type="button"
+ class="btn btn-default ide-staged-action-btn p-0 order-1 align-items-center"
data-placement="bottom"
@click="actionBtnClicked"
>
<icon
- class="ml-auto mr-auto"
:name="actionBtnIcon"
:size="12"
+ class="ml-auto mr-auto"
/>
</button>
<span
- class="ide-commit-file-count order-0 rounded-left text-center"
:class="{
'rounded-right': !fileList.length
}"
+ class="ide-commit-file-count order-0 rounded-left text-center"
>
{{ fileList.length }}
</span>