From 5f31edf3a553f8597a697757e2c10015743519b0 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Mon, 28 Apr 2025 14:25:29 +0200 Subject: [PATCH] Fix(app/machine/create): fix css styling inconsistencies, remove ability to set tags --- .../app/src/routes/machines/avatar.tsx | 4 +-- .../app/src/routes/machines/create.tsx | 30 ++----------------- 2 files changed, 5 insertions(+), 29 deletions(-) diff --git a/pkgs/webview-ui/app/src/routes/machines/avatar.tsx b/pkgs/webview-ui/app/src/routes/machines/avatar.tsx index c0746489c..4e353a77d 100644 --- a/pkgs/webview-ui/app/src/routes/machines/avatar.tsx +++ b/pkgs/webview-ui/app/src/routes/machines/avatar.tsx @@ -10,11 +10,11 @@ export const MachineAvatar = (props: AvatarProps) => {
- +
diff --git a/pkgs/webview-ui/app/src/routes/machines/create.tsx b/pkgs/webview-ui/app/src/routes/machines/create.tsx index d3e636cf6..1bda5b558 100644 --- a/pkgs/webview-ui/app/src/routes/machines/create.tsx +++ b/pkgs/webview-ui/app/src/routes/machines/create.tsx @@ -73,16 +73,17 @@ export function CreateMachine() {
-
+ {(field, props) => ( <> -
+
+ )} - - {(field, props) => ( -
- Tags
, - }} - schema={{ - type: "object", - properties: { - tags: { - type: "array", - items: { - title: "Tag", - type: "string", - }, - uniqueItems: true, - }, - }, - }} - /> -
- )} -
Deployment Settings