Commit 9644ed82 authored by Phil Hughes's avatar Phil Hughes

updated styling

fixed merge request text not always appearing
parent 129dd185
......@@ -30,7 +30,6 @@ export default {
<template>
<div
class="dropdown"
style="margin-left:auto;"
>
<button
type="button"
......
......@@ -13,7 +13,9 @@ export default {
...mapState(['viewer']),
},
mounted() {
this.updateViewer(this.currentMergeRequest ? 'mrdiff' : 'diff');
this.$nextTick(() => {
this.updateViewer(this.currentMergeRequest ? 'mrdiff' : 'diff');
});
},
methods: {
...mapActions(['updateViewer']),
......@@ -51,11 +53,3 @@ export default {
</template>
</ide-tree-list>
</template>
<style>
.ide-review-button-holder {
display: flex;
width: 100%;
align-items: center;
}
</style>
......@@ -102,14 +102,14 @@ router.beforeEach((to, from, next) => {
throw e;
});
} else if (to.params.mrid) {
store.dispatch('updateActivityBarView', activityBarViews.review);
store
.dispatch('getMergeRequestData', {
projectId: fullProjectId,
mergeRequestId: to.params.mrid,
})
.then(mr => {
store.dispatch('updateActivityBarView', activityBarViews.review);
store.dispatch('getBranchData', {
projectId: fullProjectId,
branchId: mr.source_branch,
......
......@@ -972,6 +972,14 @@
.ide-review-header {
flex-direction: column;
align-items: flex-start;
.dropdown {
margin-left: auto;
}
a {
color: $gl-link-color;
}
}
.ide-review-sub-header {
......@@ -981,3 +989,9 @@
.ide-new-modal-label {
line-height: 34px;
}
.ide-review-button-holder {
display: flex;
width: 100%;
align-items: center;
}
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