Commit 6f99f24a authored by Robert Speicher's avatar Robert Speicher

Merge remote-tracking branch 'ce/master'

parents 62bf2d8a ca56311d
...@@ -357,11 +357,11 @@ export const poll = ({ commit, state, getters, dispatch }) => { ...@@ -357,11 +357,11 @@ export const poll = ({ commit, state, getters, dispatch }) => {
}; };
export const stopPolling = () => { export const stopPolling = () => {
eTagPoll.stop(); if (eTagPoll) eTagPoll.stop();
}; };
export const restartPolling = () => { export const restartPolling = () => {
eTagPoll.restart(); if (eTagPoll) eTagPoll.restart();
}; };
export const fetchData = ({ commit, state, getters }) => { export const fetchData = ({ commit, state, getters }) => {
......
...@@ -38,3 +38,9 @@ ...@@ -38,3 +38,9 @@
.documentation { .documentation {
padding: 7px; padding: 7px;
} }
.card.links-card {
a {
color: $blue-600;
}
}
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
.documentation-index.md .documentation-index.md
= markdown(@help_index) = markdown(@help_index)
.col-md-4 .col-md-4
.card .card.links-card
.card-header .card-header
Quick help Quick help
%ul.content-list %ul.content-list
......
---
title: Fix commenting before discussions are loaded
merge_request: 30724
author:
type: fixed
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