diff --git a/frontend/src/components/deployment/Actions.tsx b/frontend/src/components/deployment/Actions.tsx
index 6dbad852d..24bfba79a 100644
--- a/frontend/src/components/deployment/Actions.tsx
+++ b/frontend/src/components/deployment/Actions.tsx
@@ -8,7 +8,7 @@ import s from "./deployment.module.css";
const Actions: Component<{ deployment: Deployment }> = (p) => {
return (
-
+
deploy:{" "}
);
}
diff --git a/frontend/src/components/deployment/updates/Updates.tsx b/frontend/src/components/deployment/updates/Updates.tsx
index 8b5a12b7c..d8a75cc31 100644
--- a/frontend/src/components/deployment/updates/Updates.tsx
+++ b/frontend/src/components/deployment/updates/Updates.tsx
@@ -1,17 +1,24 @@
-import { Component } from "solid-js";
+import { Component, For, Show } from "solid-js";
import { useUpdates } from "../../../state/hooks";
import { useAppState } from "../../../state/StateProvider";
+import Grid from "../../util/layout/Grid";
import s from "../deployment.module.css";
+import Update from "./Update";
const Updates: Component<{ deploymentID: string }> = (p) => {
- const { updates, ws } = useAppState();
- const selectedUpdates = useUpdates({ deploymentID: p.deploymentID });
-
- return (
-
-
-
- );
-}
+ const { updates, ws } = useAppState();
+ const selectedUpdates = useUpdates({ deploymentID: p.deploymentID });
-export default Updates;
\ No newline at end of file
+ return (
+
+
+
+
+ {(update) => }
+
+
+
+ );
+};
+
+export default Updates;
diff --git a/frontend/src/components/topbar/Account.tsx b/frontend/src/components/topbar/Account.tsx
index 4c01b0e5a..b4088c8da 100644
--- a/frontend/src/components/topbar/Account.tsx
+++ b/frontend/src/components/topbar/Account.tsx
@@ -10,7 +10,7 @@ const Account: Component<{}> = (p) => {
const { logout } = useAppState();
const { user, username } = useUser();
return (
-
+
{username()}
permissions: {readablePermissions(user()!.permissions!)}
diff --git a/frontend/src/components/topbar/updates/Updates.tsx b/frontend/src/components/topbar/updates/Updates.tsx
index 183722df2..21e529bf3 100644
--- a/frontend/src/components/topbar/updates/Updates.tsx
+++ b/frontend/src/components/topbar/updates/Updates.tsx
@@ -9,6 +9,7 @@ const Updates: Component<{}> = (p) => {
return (
+ updates
{(update) => }