We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04e56a8 commit 8a517d1Copy full SHA for 8a517d1
adminforth/dataConnectors/clickhouse.ts
@@ -141,7 +141,7 @@ class ClickhouseConnector extends AdminForthBaseConnector implements IAdminForth
141
|| field._underlineType.startsWith('String')
142
|| field._underlineType.startsWith('FixedString')) {
143
// value is iso string now, convert to unix timestamp
144
- const iso = dayjs(value).toISOString();
+ const iso = dayjs(value).format('YYYY-MM-DDTHH:mm:ss');
145
return iso;
146
}
147
} else if (field.type == AdminForthDataTypes.BOOLEAN) {
0 commit comments