mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
chore: Add null to DataStoreColumnJsType (no-changelog) (#18733)
This commit is contained in:
@@ -236,10 +236,10 @@ export function normalizeRows(rows: DataStoreRows, columns: DataStoreColumn[]) {
|
||||
}
|
||||
|
||||
export function normalizeValue(
|
||||
value: DataStoreColumnJsType | null,
|
||||
value: DataStoreColumnJsType,
|
||||
columnType: string | undefined,
|
||||
dbType: DataSourceOptions['type'],
|
||||
): DataStoreColumnJsType | null {
|
||||
): DataStoreColumnJsType {
|
||||
if (['mysql', 'mariadb'].includes(dbType)) {
|
||||
if (columnType === 'date') {
|
||||
if (value instanceof Date) {
|
||||
|
||||
Reference in New Issue
Block a user