Merge development (#86)

This commit is contained in:
John Wu
2021-09-13 09:15:20 -07:00
committed by GitHub
parent 74eb2707a3
commit 680280dbf2
32 changed files with 465 additions and 466 deletions

View File

@@ -122,8 +122,8 @@ const MainForm = () => {
setPageIndex(0);
};
const handleSearch = (search) => {
setSearch(search);
const handleSearch = (query) => {
setSearch(query);
};
const onDelete = async (manifest_id) => {
@@ -161,7 +161,7 @@ const MainForm = () => {
]);
}
if (actions.length === 0) return "No actions";
if (actions.length === 0) return ["No actions"];
return actions.map((action) => {
if (action.link != null) {