Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2018-01-08 14:34:22 +0300
committerSean McGivern <sean@mcgivern.me.uk>2018-01-08 14:34:22 +0300
commit33fb2f99e92acc96ab322f4594a13f11218db87e (patch)
treeb0d34a33e47a634c78b03fa0c2aa4667c6f67067 /app/assets/javascripts/groups/store
parent3013951c7318d6b08d83c6ec96a4d68d031c3a62 (diff)
parent6185ce0c84b5674abf4f54576fec44fece571565 (diff)
Merge branch '40549-render-emoj-in-groups-overview' into 'master'
Resolve "No Rendering of emoji's in Group-Overview after update" Closes #40549 See merge request gitlab-org/gitlab-ce!16098
Diffstat (limited to 'app/assets/javascripts/groups/store')
-rw-r--r--app/assets/javascripts/groups/store/groups_store.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/groups/store/groups_store.js b/app/assets/javascripts/groups/store/groups_store.js
index ffc86175548..4a7569078a1 100644
--- a/app/assets/javascripts/groups/store/groups_store.js
+++ b/app/assets/javascripts/groups/store/groups_store.js
@@ -71,7 +71,7 @@ export default class GroupsStore {
id: rawGroupItem.id,
name: rawGroupItem.name,
fullName: rawGroupItem.full_name,
- description: rawGroupItem.description,
+ description: rawGroupItem.markdown_description,
visibility: rawGroupItem.visibility,
avatarUrl: rawGroupItem.avatar_url,
relativePath: rawGroupItem.relative_path,