diff --git a/src/components/planes/CreatePlanDialog.tsx b/src/components/planes/CreatePlanDialog.tsx index fde48b5..5175244 100644 --- a/src/components/planes/CreatePlanDialog.tsx +++ b/src/components/planes/CreatePlanDialog.tsx @@ -261,8 +261,7 @@ export function CreatePlanDialog({ open, onOpenChange }: { open: boolean; onOpen const ext = fileExt(file.titulo); const selected = isSelected(file.s3_file_path); return ( - + ) })} diff --git a/src/routes/_authenticated/planes.tsx b/src/routes/_authenticated/planes.tsx index cc8e4db..f1ad984 100644 --- a/src/routes/_authenticated/planes.tsx +++ b/src/routes/_authenticated/planes.tsx @@ -154,7 +154,7 @@ function RouteComponent() { className="bg-white/60" style={{ borderColor: (chipTint(fac?.color).borderColor as string) }} > - {p.estado} + {p.estado && p.estado.length > 10 ? `${p.estado.slice(0, 10)}…` : p.estado} )} diff --git a/src/routes/_authenticated/usuarios.tsx b/src/routes/_authenticated/usuarios.tsx index 52e71d7..4e4eae8 100644 --- a/src/routes/_authenticated/usuarios.tsx +++ b/src/routes/_authenticated/usuarios.tsx @@ -371,7 +371,7 @@ function RouteComponent() {
setForm((s) => ({ ...s, nombre: e.target.value }))} />
setForm((s) => ({ ...s, apellidos: e.target.value }))} />
-
setForm((s) => ({ ...s, title: e.target.value }))} />
+
setForm((s) => ({ ...s, title: e.target.value }))} />
setForm((s) => ({ ...s, clave: e.target.value }))} />
setForm((s) => ({ ...s, avatar: e.target.value }))} />
@@ -472,7 +472,7 @@ function RouteComponent() {
setCreateForm((s) => ({ ...s, nombre: e.target.value }))} />
setCreateForm((s) => ({ ...s, apellidos: e.target.value }))} />
-
setCreateForm((s) => ({ ...s, title: e.target.value }))} />
+
setCreateForm((s) => ({ ...s, title: e.target.value }))} />
setCreateForm((s) => ({ ...s, clave: e.target.value }))} />
setCreateForm((s) => ({ ...s, avatar: e.target.value }))} />