Browse Source

Remove console

pull/1242/head
Hironsan 4 years ago
parent
commit
806bed0db9
1 changed files with 0 additions and 1 deletions
  1. 1
      frontend/repositories/document/api.ts

1
frontend/repositories/document/api.ts

@ -10,7 +10,6 @@ export class FromApiDocumentItemListRepository implements DocumentItemRepository
async list(projectId: string, { limit = '10', offset = '0', q = '', isChecked = '', filterName = '' }: SearchOption): Promise<DocumentItemList> {
const url = `/projects/${projectId}/docs?limit=${limit}&offset=${offset}&q=${q}&${filterName}=${isChecked}`
console.log(url)
const response = await this.request.get(url)
return DocumentItemList.valueOf(response.data)
}

Loading…
Cancel
Save