mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-27 23:50:01 +03:00
fix: shift-click for multi-delete-in-a-row selects wrong images (#323)
fixes #323
This commit is contained in:
parent
c74a9aeaa3
commit
bf9c6c82e7
3 changed files with 3 additions and 3 deletions
2
dist/docker-registry-ui.js
vendored
2
dist/docker-registry-ui.js
vendored
File diff suppressed because one or more lines are too long
|
@ -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",
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue