Skip to content

Commit

Permalink
Kernel Image Edit and Delete (#442)
Browse files Browse the repository at this point in the history
* Edit and delete functionality working with some slight QOL bugs

* Edit/delete local updates

* UI improvements

* Fix lint
  • Loading branch information
Winston-Hsiao authored Oct 3, 2024
1 parent edd701c commit 4f1d628
Show file tree
Hide file tree
Showing 12 changed files with 686 additions and 102 deletions.
210 changes: 164 additions & 46 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"dependencies": {
"@formspree/react": "^2.5.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Container = (props: ContainerProps) => {
const { children } = props;

return (
<div className="my-[68px] mx-4 sm:mx-6 md:mx-10 xl:mx-16 max-w-full">
<div className="mt-[68px] mb-6 mx-4 sm:mx-6 md:mx-10 xl:mx-16 max-w-full">
{children}
</div>
);
Expand Down
Loading

0 comments on commit 4f1d628

Please sign in to comment.