Re-generate.
This commit is contained in:
parent
85271607d0
commit
acf8a830d7
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ func (h *Handler) PasswordTokenList(ctx echo.Context) (*EntityList, error) {
|
|||
HasNextPage: len(res) > h.itemsPerPage,
|
||||
}
|
||||
|
||||
for i := 0; i < len(res)-1; i++ {
|
||||
for i := 0; i <= len(res)-1; i++ {
|
||||
list.Entities = append(list.Entities, EntityValues{
|
||||
ID: res[i].ID,
|
||||
Values: []string{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue