Browse Source

fix: typo correction

pull/7574/head
Pranav C 10 months ago
parent
commit
73a179e6b0
  1. 2
      packages/nocodb/src/db/conditionV2.ts

2
packages/nocodb/src/db/conditionV2.ts

@ -663,7 +663,7 @@ const parseConditionV2 = async (
genVal = genVal.format(dateFormat).toString();
// keep YYYY-MM-DD only for date
genVal =
column.uidt === UITypes.Date ? val.substring(0, 10) : genVal;
column.uidt === UITypes.Date ? genVal.substring(0, 10) : genVal;
}
}

Loading…
Cancel
Save