Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
3e7ac921
Commit
3e7ac921
authored
Jan 29, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed admin_email_select
parent
6a07c1a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app/assets/javascripts/api.js
app/assets/javascripts/api.js
+1
-1
ee/app/assets/javascripts/pages/admin/emails/show/admin_email_select.js
...javascripts/pages/admin/emails/show/admin_email_select.js
+1
-1
No files found.
app/assets/javascripts/api.js
View file @
3e7ac921
...
...
@@ -57,7 +57,7 @@ const Api = {
},
// Return projects list. Filtered by query
projects
(
query
,
options
,
callback
)
{
projects
(
query
,
options
,
callback
=
$
.
noop
)
{
const
url
=
Api
.
buildUrl
(
Api
.
projectsPath
);
const
defaults
=
{
search
:
query
,
...
...
ee/app/assets/javascripts/pages/admin/emails/show/admin_email_select.js
View file @
3e7ac921
...
...
@@ -18,7 +18,7 @@ function AdminEmailSelect() {
order_by
:
'
id
'
,
membership
:
false
});
return
Promise
.
all
([
projectsFetch
,
groupsFetch
]).
done
(
function
([
projects
,
groups
])
{
return
Promise
.
all
([
projectsFetch
,
groupsFetch
]).
then
(
function
([
projects
,
groups
])
{
var
all
,
data
;
all
=
{
id
:
"
all
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment