diff --git a/apps/Frontend/src/components/appointment-procedures/appointment-procedures-dialog.tsx b/apps/Frontend/src/components/appointment-procedures/appointment-procedures-dialog.tsx index 1f4e2e1..c5196c7 100644 --- a/apps/Frontend/src/components/appointment-procedures/appointment-procedures-dialog.tsx +++ b/apps/Frontend/src/components/appointment-procedures/appointment-procedures-dialog.tsx @@ -389,6 +389,17 @@ export function AppointmentProceduresDialog({
+ {/* ===== TABLE HEADER ===== */} +
+
Code
+
Label
+
Fee
+
Tooth
+
Surface
+
Edit
+
Delete
+
+ {isLoading && (
Loading... @@ -404,7 +415,7 @@ export function AppointmentProceduresDialog({ {procedures.map((p) => (
{editingId === p.id ? ( <> @@ -460,18 +471,21 @@ export function AppointmentProceduresDialog({ }) } /> - - - - +
+ +
+ +
+ +
) : ( <> @@ -490,21 +504,25 @@ export function AppointmentProceduresDialog({
{p.toothNumber}
{p.toothSurface}
- +
+ +
- +
+ +
)}