Skip to content

Commit bf9c6c8

Browse files
committed
fix: shift-click for multi-delete-in-a-row selects wrong images (#323)
fixes #323
1 parent c74a9ae commit bf9c6c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/docker-registry-ui.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-registry-ui",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"type": "module",
55
"scripts": {
66
"format": "npm run format-html && npm run format-js && npm run format-riot",

src/components/tag-list/tag-table.riot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
238238
return selectedImage;
239239
} else {
240240
let shouldChange = false;
241-
const tags = getPage(this.props.tags, this.props.page);
241+
const tags = this.getPage(this.props.tags, this.props.page);
242242
tags
243243
.filter((image) => {
244244
if (image == this.state.selectedImage || image == selectedImage) {

0 commit comments

Comments
 (0)