From 4b38bc7c061ebcfa54016cd6e2d6b428e61ce101 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Thu, 5 Oct 2023 21:26:43 +0100 Subject: [PATCH] add comment --- src/utils/selectedCellUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/selectedCellUtils.ts b/src/utils/selectedCellUtils.ts index d22a039ca1..a3142da8ce 100644 --- a/src/utils/selectedCellUtils.ts +++ b/src/utils/selectedCellUtils.ts @@ -23,6 +23,7 @@ export function isSelectedCellEditable({ return isCellEditableUtil(column, row); } +// https://github.com/vercel/next.js/issues/56480 export function isCellEditableUtil(column: CalculatedColumn, row: R): boolean { return ( column.renderEditCell != null &&