From a4331cc109253087e51edc36827c7e3815fbbd69 Mon Sep 17 00:00:00 2001 From: Brian McGee Date: Wed, 30 Jul 2025 14:15:24 +0100 Subject: [PATCH] feat(ui): add tooltips for general section in machine detail pane --- pkgs/clan-app/ui/src/routes/Machine/SectionGeneral.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-app/ui/src/routes/Machine/SectionGeneral.tsx b/pkgs/clan-app/ui/src/routes/Machine/SectionGeneral.tsx index 1a56890b4..aa5c455ae 100644 --- a/pkgs/clan-app/ui/src/routes/Machine/SectionGeneral.tsx +++ b/pkgs/clan-app/ui/src/routes/Machine/SectionGeneral.tsx @@ -80,6 +80,9 @@ export const SectionGeneral = () => { readOnly orientation="horizontal" input={input} + tooltip={ + "A unique identifier for this machine. It cannot be changed." + } /> )} @@ -91,11 +94,14 @@ export const SectionGeneral = () => { value={field.value} size="s" inverted - label="Class" + label="Platform" required readOnly orientation="horizontal" input={input} + tooltip={ + "The target platform for this machine. It cannot be changed. It is set in the installer." + } /> )}