You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was browsing the code, and I noticed this which is likely a typo:
File: src/scripts/docker-image.js
this.on('get-sha256', function () {
if (this.size !== undefined) {
return this.trigger('sha256', this.sha256);
}
return this.fillInfo();
});
I assume that size here should be sha256. It is unlikely to cause an issue since I don't think sha256 can be det without a size, but I thought I'd mention it.
The text was updated successfully, but these errors were encountered:
I was browsing the code, and I noticed this which is likely a typo:
File: src/scripts/docker-image.js
I assume that
size
here should besha256
. It is unlikely to cause an issue since I don't think sha256 can be det without a size, but I thought I'd mention it.The text was updated successfully, but these errors were encountered: