Prettify JS

This commit is contained in:
Heinrich Lee Yu 2018-11-01 08:32:01 +08:00
parent 911d835650
commit c216b25dfe
2 changed files with 15 additions and 9 deletions

View File

@ -48,14 +48,19 @@ export default {
selectable: true,
data: (term, callback) => {
this.loading = true;
return Api.groupProjects(this.groupId, term, {
with_issues_enabled: true,
with_shared: false,
include_subgroups: true
}, projects => {
this.loading = false;
callback(projects);
});
return Api.groupProjects(
this.groupId,
term,
{
with_issues_enabled: true,
with_shared: false,
include_subgroups: true,
},
projects => {
this.loading = false;
callback(projects);
},
);
},
renderRow(project) {
return `

View File

@ -14,7 +14,8 @@ export default function projectSelect() {
this.orderBy = $(select).data('orderBy') || 'id';
this.withIssuesEnabled = $(select).data('withIssuesEnabled');
this.withMergeRequestsEnabled = $(select).data('withMergeRequestsEnabled');
this.withShared = $(select).data('withShared') === undefined ? true : $(select).data('withShared');
this.withShared =
$(select).data('withShared') === undefined ? true : $(select).data('withShared');
this.includeProjectsInSubgroups = $(select).data('includeProjectsInSubgroups') || false;
this.allowClear = $(select).data('allowClear') || false;