Commit 0c8c599f authored by Phil Hughes's avatar Phil Hughes

removed context bar from ide.vue

parent ed0a1818
<script>
import { mapState, mapGetters } from 'vuex';
import ideSidebar from './ide_side_bar.vue';
import ideContextbar from './ide_context_bar.vue';
import repoTabs from './repo_tabs.vue';
import ideStatusBar from './ide_status_bar.vue';
import repoEditor from './repo_editor.vue';
......@@ -9,7 +8,6 @@ import repoEditor from './repo_editor.vue';
export default {
components: {
ideSidebar,
ideContextbar,
repoTabs,
ideStatusBar,
repoEditor,
......@@ -92,9 +90,5 @@ export default {
</div>
</template>
</div>
<!-- <ide-contextbar
:no-changes-state-svg-path="noChangesStateSvgPath"
:committed-state-svg-path="committedStateSvgPath"
/> -->
</div>
</template>
......@@ -21,6 +21,7 @@ export default {
<template>
<div
v-if="currentTree"
class="ide-file-list"
>
<template v-if="currentTree.loading">
......
......@@ -55,7 +55,6 @@ export const getBranchData = (
branch: data,
});
commit(types.SET_BRANCH_WORKING_REFERENCE, { projectId, branchId, reference: id });
commit(types.SET_CURRENT_BRANCH, branchId);
resolve(data);
})
.catch(() => {
......
......@@ -421,12 +421,6 @@
margin-right: 0;
}
.projects-sidebar {
display: flex;
flex-direction: column;
height: 100%;
}
.multi-file-commit-panel-inner {
display: flex;
flex: 1;
......@@ -447,15 +441,6 @@
}
}
.multi-file-context-bar-icon {
padding: 10px;
svg {
margin-right: 10px;
float: left;
}
}
.multi-file-commit-panel-section {
display: flex;
flex-direction: column;
......
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