Skip to content

Commit

Permalink
fix(docker-image): minor typo for sha256
Browse files Browse the repository at this point in the history
fixes #201
  • Loading branch information
Joxit committed Jul 13, 2021
1 parent 840a00e commit db6b74a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions dist/docker-registry-ui.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docker-registry-ui",
"version": "2.0.7",
"version": "2.0.8",
"scripts": {
"start": "ROLLUP_SERVE=true rollup -c -w",
"build": "rollup -c",
Expand All @@ -14,21 +14,21 @@
"license": "AGPL-3.0",
"description": "A web UI for private docker registry",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@riotjs/compiler": "^5.3.1",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@riotjs/compiler": "^5.4.2",
"@riotjs/observable": "^4.0.4",
"@riotjs/route": "^7.0.0",
"@riotjs/route": "^7.1.2",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"core-js": "^3.9.1",
"js-beautify": "^1.13.0",
"riot": "^5.3.1",
"riot-mui": "joxit/riot-5-mui#4d68d7f",
"rollup": "^2.34.2",
"@rollup/plugin-node-resolve": "^11.2.1",
"core-js": "^3.15.2",
"js-beautify": "^1.14.0",
"riot": "^5.4.5",
"riot-mui": "github:joxit/riot-5-mui#4d68d7f",
"rollup": "^2.53.1",
"rollup-plugin-app-utils": "^1.0.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/docker-image.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class DockerImage {
return this.fillInfo();
});
this.on('get-sha256', function () {
if (this.size !== undefined) {
if (this.sha256 !== undefined) {
return this.trigger('sha256', this.sha256);
}
return this.fillInfo();
Expand Down

0 comments on commit db6b74a

Please sign in to comment.