Commit d1ceb600 authored by Phil Hughes's avatar Phil Hughes

Merge branch '43598-fix-duplicate-label-load-failure' into 'master'

Fix Group labels load failure when there are duplicate labels present

Closes #43598

See merge request gitlab-org/gitlab-ce!17353
parents 336f01c2 c0145298
......@@ -213,7 +213,7 @@ export default class LabelsSelect {
}
}
if (label.duplicate) {
color = gl.DropdownUtils.duplicateLabelColor(label.color);
color = DropdownUtils.duplicateLabelColor(label.color);
}
else {
if (label.color != null) {
......
---
title: Fix Group labels load failure when there are duplicate labels present
merge_request: 17353
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