This commit is contained in:
caishi 2020-05-28 15:30:48 +08:00
parent 8b80d60996
commit ed26a17809
1 changed files with 3 additions and 1 deletions

View File

@ -57,7 +57,9 @@ export default Form.create()(
if (repo_id) {
const url = `/repositories/${repo_id}/tags.json`;
axios
.get(url)
.get(url,{params:{
limit:1000
}})
.then(result => {
if (result) {
setTagList(result.data);