Commit cd52139d authored by Himanshu Kapoor's avatar Himanshu Kapoor

Remove unstaged icon from view

parent f422a13f
...@@ -19,10 +19,6 @@ export default { ...@@ -19,10 +19,6 @@ export default {
type: Array, type: Array,
required: true, required: true,
}, },
iconName: {
type: String,
required: true,
},
stagedList: { stagedList: {
type: Boolean, type: Boolean,
required: false, required: false,
...@@ -73,7 +69,6 @@ export default { ...@@ -73,7 +69,6 @@ export default {
<div class="ide-commit-list-container"> <div class="ide-commit-list-container">
<header class="multi-file-commit-panel-header d-flex mb-0"> <header class="multi-file-commit-panel-header d-flex mb-0">
<div class="d-flex align-items-center flex-fill"> <div class="d-flex align-items-center flex-fill">
<gl-icon v-once :name="iconName" :size="18" class="gl-mr-3" />
<strong> {{ titleText }} </strong> <strong> {{ titleText }} </strong>
<div class="d-flex ml-auto"> <div class="d-flex ml-auto">
<button <button
......
...@@ -68,7 +68,6 @@ export default { ...@@ -68,7 +68,6 @@ export default {
:active-file-key="activeFileKey" :active-file-key="activeFileKey"
:empty-state-text="__('There are no changes')" :empty-state-text="__('There are no changes')"
class="is-first" class="is-first"
icon-name="unstaged"
/> />
</template> </template>
<empty-state v-else /> <empty-state v-else />
......
---
title: Removes the hamburger icon in the Changes tab in Web IDE
merge_request: 45717
author:
type: fixed
...@@ -16,7 +16,6 @@ describe('Multi-file editor commit sidebar list', () => { ...@@ -16,7 +16,6 @@ describe('Multi-file editor commit sidebar list', () => {
vm = createComponentWithStore(Component, store, { vm = createComponentWithStore(Component, store, {
title: 'Staged', title: 'Staged',
fileList: [], fileList: [],
iconName: 'staged',
action: 'stageAllChanges', action: 'stageAllChanges',
actionBtnText: 'stage all', actionBtnText: 'stage all',
actionBtnIcon: 'history', actionBtnIcon: 'history',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment