diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/js/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/index.js b/public/js/index.js index ad5e3912de..8a85ad9157 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1766,11 +1766,11 @@ function searchTeams() { $searchTeamBox.search({ minCharacters: 2, apiSettings: { - url: suburl + '/api/v1/orgs/' + $searchTeamBox.data('org') + '/teams', + url: suburl + '/api/v1/orgs/' + $searchTeamBox.data('org') + '/teams/search?q={query}', headers: {"X-Csrf-Token": csrf}, onResponse: function(response) { const items = []; - $.each(response, function (_i, item) { + $.each(response.data, function (_i, item) { const title = item.name + ' (' + item.permission + ' access)'; items.push({ title: title, |