Commit 56a177cd authored by GitLab Bot's avatar GitLab Bot

Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-03-13

# Conflicts:
#	lib/gitlab/git/gitlab_projects.rb

[ci skip]
parents f69f6a23 ea01d475
......@@ -209,6 +209,7 @@
const xAxis = d3.axisBottom()
.scale(axisXScale)
.ticks(this.graphWidth / 120)
.tickFormat(timeScaleFormat);
const yAxis = d3.axisLeft()
......
......@@ -17,8 +17,6 @@
*/
@mixin markdown-table {
width: auto;
display: block;
overflow-x: auto;
}
/*
......
......@@ -180,6 +180,11 @@ ul.wiki-pages-list.content-list {
}
}
.wiki-holder {
overflow-x: auto;
overflow-y: hidden;
}
.wiki {
table {
@include markdown-table;
......
---
title: Fix markdown table showing extra column
merge_request: 17669
author:
type: fixed
......@@ -70,7 +70,7 @@ To downgrade an Omnibus installation, it is sufficient to install the Community
Edition package on top of the currently installed one. You can do this manually,
by directly [downloading the package](https://packages.gitlab.com/gitlab/gitlab-ce)
you need, or by adding our CE package repository and following the
[CE installation instructions](https://about.gitlab.com/downloads/).
[CE installation instructions](https://about.gitlab.com/downloads/?version=ce).
**Source Installation**
......
......@@ -67,7 +67,11 @@ module Gitlab
tags_option = tags ? '--tags' : '--no-tags'
logger.info "Fetching remote #{name} for repository #{repository_absolute_path}."
<<<<<<< HEAD
cmd = %W(#{git_fetch_binary} fetch #{name} --quiet)
=======
cmd = %W(#{Gitlab.config.git.bin_path} fetch #{name} --quiet)
>>>>>>> upstream/master
cmd << '--prune' if prune
cmd << '--force' if force
cmd << tags_option
......
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