- These images will be deleted
-
+
+
-
-
+
diff --git a/src/components/dialogs/dialogs-menu.riot b/src/components/dialogs/dialogs-menu.riot
index c0ad257..067f318 100644
--- a/src/components/dialogs/dialogs-menu.riot
+++ b/src/components/dialogs/dialogs-menu.riot
@@ -35,15 +35,23 @@
on-notify="{ props.onNotify }"
on-server-change="{ props.onServerChange }"
>
-
-
+
+
more_vert
-
+ >
diff --git a/src/components/search-bar.riot b/src/components/search-bar.riot
index 77fffd1..06e546b 100644
--- a/src/components/search-bar.riot
+++ b/src/components/search-bar.riot
@@ -1,5 +1,5 @@
-
+
diff --git a/src/components/tag-list/remove-image.riot b/src/components/tag-list/remove-image.riot
index f518ab5..b7a4f5c 100644
--- a/src/components/tag-list/remove-image.riot
+++ b/src/components/tag-list/remove-image.riot
@@ -16,13 +16,15 @@ along with this program. If not, see .
-->
delete
@@ -56,8 +58,8 @@ along with this program. If not, see .
deleteImage() {
this.props.handleCheckboxChange(ACTION_DELETE_IMAGE, this.props.image);
},
- handleCheckboxChange(checked) {
- const action = checked ? ACTION_CHECK_TO_DELETE : ACTION_UNCHECK_TO_DELETE;
+ handleCheckboxChange(event) {
+ const action = event.target.checked ? ACTION_CHECK_TO_DELETE : ACTION_UNCHECK_TO_DELETE;
this.props.handleCheckboxChange(action, this.props.image);
},
};
diff --git a/src/components/tag-list/tag-history-button.riot b/src/components/tag-list/tag-history-button.riot
index 8595f18..8a6692d 100644
--- a/src/components/tag-list/tag-history-button.riot
+++ b/src/components/tag-list/tag-history-button.riot
@@ -17,11 +17,13 @@ along with this program. If not, see .
history
@@ -40,7 +42,7 @@ along with this program. If not, see .
},
routeToHistory() {
if (!this.props.image.ociImage) {
- router.history(this.props.image.name, this.props.image.tag);
+ return router.history(this.props.image.name, this.props.image.tag);
}
},
};
diff --git a/src/components/tag-list/tag-list.riot b/src/components/tag-list/tag-list.riot
index 65ddf18..ec176eb 100644
--- a/src/components/tag-list/tag-list.riot
+++ b/src/components/tag-list/tag-list.riot
@@ -17,7 +17,14 @@ along with this program. If not, see .