Skip to content

Commit

Permalink
fix: shift-click for multi-delete-in-a-row selects wrong images (#323)
Browse files Browse the repository at this point in the history
fixes #323
  • Loading branch information
Joxit committed Jul 17, 2023
1 parent c74a9ae commit bf9c6c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/docker-registry-ui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "docker-registry-ui",
"version": "2.5.0",
"version": "2.5.1",
"type": "module",
"scripts": {
"format": "npm run format-html && npm run format-js && npm run format-riot",
Expand Down
2 changes: 1 addition & 1 deletion src/components/tag-list/tag-table.riot
Expand Up @@ -238,7 +238,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
return selectedImage;
} else {
let shouldChange = false;
const tags = getPage(this.props.tags, this.props.page);
const tags = this.getPage(this.props.tags, this.props.page);
tags
.filter((image) => {
if (image == this.state.selectedImage || image == selectedImage) {
Expand Down

0 comments on commit bf9c6c8

Please sign in to comment.