From 285d161c6cc5c58a07990cb7d2206a81348ef4c6 Mon Sep 17 00:00:00 2001 From: Quan Nguyen <86090707+qu8n@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:33:13 -0500 Subject: [PATCH] Disable the MRN column on Patients table from being sortable The entire Patients table isn't sortable at the moment. For context, see https://github.com/mskcc/smile-server/issues/960. --- frontend/src/shared/helpers.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/shared/helpers.tsx b/frontend/src/shared/helpers.tsx index 001cd575..5ece181a 100644 --- a/frontend/src/shared/helpers.tsx +++ b/frontend/src/shared/helpers.tsx @@ -157,6 +157,7 @@ export const PatientsListColumns: ColDef[] = [ headerName: "Patient MRN", hide: true, cellStyle: { color: "crimson" }, + sortable: false, }, { field: "cmoPatientId",