Fix: #39 use _category?n=100000 for registries with many images

This commit is contained in:
Joxit 2018-06-09 00:09:32 +02:00
parent 642afd695d
commit 4d1f47e808
5 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "docker-registry-ui",
"version": "0.3.5",
"version": "0.3.6",
"scripts": {
"build": "./node_modules/gulp/bin/gulp.js build"
},

View file

@ -57,7 +57,7 @@
registryUI.catalog.loadend = true;
registryUI.catalog.instance.update();
});
oReq.open('GET', registryUI.url() + '/v2/_catalog');
oReq.open('GET', registryUI.url() + '/v2/_catalog?n=100000');
oReq.send();
};
registryUI.catalog.go = function (image) {