Commit 167d5aeb by Marcus Efraimsson Committed by GitHub

Merge pull request #11576 from flopp999/patch-3

change default annotation limit from 10 to 100 when querying api
parents b481e151 74f570fd
...@@ -202,7 +202,7 @@ func (r *SqlAnnotationRepo) Find(query *annotations.ItemQuery) ([]*annotations.I ...@@ -202,7 +202,7 @@ func (r *SqlAnnotationRepo) Find(query *annotations.ItemQuery) ([]*annotations.I
} }
if query.Limit == 0 { if query.Limit == 0 {
query.Limit = 10 query.Limit = 100
} }
sql.WriteString(fmt.Sprintf(" ORDER BY epoch DESC LIMIT %v", query.Limit)) sql.WriteString(fmt.Sprintf(" ORDER BY epoch DESC LIMIT %v", query.Limit))
......
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