Changes suggested

This commit is contained in:
Rodrigo Villablanca Vásquez 2018-05-27 16:39:00 -04:00 committed by GitHub
parent be90bc41f7
commit c2ba0c16f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -249,10 +249,9 @@ func Issues(ctx *context.Context) {
opts.Page = page
opts.PageSize = setting.UI.IssuePagingNum
selectLabels := ctx.Query("labels")
opts.Labels = selectLabels
opts.Labels := ctx.Query("labels")
issues, err := models.Issues(opts)
if err != nil {
ctx.ServerError("Issues", err)