Commit 73a3801a authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '352308-labels-in-epic-activity-history-have-broken-links' into 'master'

Fixed bug without [] in label url

See merge request gitlab-org/gitlab!80227
parents 57638140 2878ce2f
......@@ -219,7 +219,7 @@ export default {
});
}
if (labelName?.length) {
if (labelName?.length && Array.isArray(labelName)) {
filteredSearchValue.push(
...labelName.map((label) => ({
type: 'label_name',
......
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