Merge branch 'release/0.0.3'

This commit is contained in:
jwu-fisker
2022-10-05 14:18:38 -07:00
45 changed files with 1127 additions and 347 deletions

View File

@@ -147,7 +147,7 @@ const MainForm = ({ name }) => {
);
} else {
return (
<div>
<span key={`delete-${action.id}-of-div`}>
<Tooltip key={`delete-${action.id}`} title={action.tip}>
<Link to="#" onClick={() => onDelete(action.id)}>
{action.icon}
@@ -159,7 +159,7 @@ const MainForm = ({ name }) => {
close={() => setShowDeleteModal(false)}
deleteFunction={() => onDelete(action.id)}
/>
</div>
</span>
);
}
});