mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-26 15:09:53 +03:00
build: release 2.3.0 🚀
This commit is contained in:
parent
fb8185907e
commit
c1f6c43e4a
5 changed files with 9 additions and 5 deletions
4
dist/docker-registry-ui.js
vendored
4
dist/docker-registry-ui.js
vendored
File diff suppressed because one or more lines are too long
1
dist/index.html
vendored
1
dist/index.html
vendored
|
@ -25,4 +25,5 @@
|
|||
read-only-registries="${READ_ONLY_REGISTRIES}"
|
||||
show-catalog-nb-tags="${SHOW_CATALOG_NB_TAGS}"
|
||||
history-custom-labels="${HISTORY_CUSTOM_LABELS}"
|
||||
use-control-cache-header="${USE_CONTROL_CACHE_HEADER}"
|
||||
></docker-registry-ui><script src="docker-registry-ui.js"></script></body></html>
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "docker-registry-ui",
|
||||
"version": "2.2.2",
|
||||
"version": "2.3.0",
|
||||
"scripts": {
|
||||
"format": "npm run format-html && npm run format-js && npm run format-riot",
|
||||
"format-html": "find src rollup rollup.config.js -name '*.html' -exec prettier --config .prettierrc -w --parser html {} \\;",
|
||||
|
|
|
@ -88,7 +88,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
<a href="https://github.com/Joxit/docker-registry-ui">Contribute on GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/Joxit/docker-registry-ui/blob/main/LICENSE">Privacy & Terms</a>
|
||||
<a href="https://github.com/Joxit/docker-registry-ui/blob/main/LICENSE">License AGPL-3.0</a>
|
||||
</li>
|
||||
</ul>
|
||||
</material-footer>
|
||||
|
|
|
@ -171,7 +171,10 @@ export class DockerImage {
|
|||
} else if (this.status === 404) {
|
||||
self.opts.onNotify(`Blobs for ${self.name}:${self.tag} not found: blob '${self.blobs}'`, true);
|
||||
} else if (!this.responseText) {
|
||||
self.opts.onNotify(`Can"t get blobs for ${self.name}:${self.tag}: blob '${self.blobs}' (no message error)`, true);
|
||||
self.opts.onNotify(
|
||||
`Can"t get blobs for ${self.name}:${self.tag}: blob '${self.blobs}' (no message error)`,
|
||||
true
|
||||
);
|
||||
} else {
|
||||
self.opts.onNotify(this.responseText);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue