diff --git a/packages/frontend-core/src/utils/rows.js b/packages/frontend-core/src/utils/rows.js index ea43d63734..50f676983d 100644 --- a/packages/frontend-core/src/utils/rows.js +++ b/packages/frontend-core/src/utils/rows.js @@ -8,6 +8,10 @@ const isBetterSample = (newValue, oldValue) => { return true } + if (oldValue != null && newValue == null) { + return false + } + // Don't change type const oldType = typeof oldValue const newType = typeof newValue