Commit 5771ee40 authored by Jacob Schatz's avatar Jacob Schatz

Merge branch 'fix-groups-long-url' into 'master'

Make group skip validation in the frontend

Closes #29236

See merge request !10426
parents d4349ba6 a63f4579
......@@ -45,14 +45,14 @@ window.GroupsSelect = (function() {
page,
per_page: GroupsSelect.PER_PAGE,
all_available,
skip_groups,
};
},
results: function (data, page) {
if (data.length) return { results: [] };
const results = data.length ? data : data.results || [];
const groups = data.length ? data : data.results || [];
const more = data.pagination ? data.pagination.more : false;
const results = groups.filter(group => skip_groups.indexOf(group.id) === -1);
return {
results,
......
---
title: Skip groups validation on the client
merge_request:
author:
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