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

removed context bar from ide.vue

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