Merge branch 'master' into BUDI-9016/design-errors-popup
This commit is contained in:
commit
4c08104c2a
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
||||||
"version": "3.4.1",
|
"version": "3.4.3",
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"concurrency": 20,
|
"concurrency": 20,
|
||||||
"command": {
|
"command": {
|
||||||
|
|
|
@ -388,7 +388,7 @@ class InternalBuilder {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof input === "string") {
|
if (typeof input === "string" && schema.type === FieldType.DATETIME) {
|
||||||
if (isInvalidISODateString(input)) {
|
if (isInvalidISODateString(input)) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 43a5785ccb4f83ce929b29f05ea0a62199fcdf23
|
Subproject commit 8cbaa80a9cc1152c6cd53722e64da7d824da6e16
|
|
@ -1040,6 +1040,12 @@ if (descriptions.length) {
|
||||||
string: { name: "FO" },
|
string: { name: "FO" },
|
||||||
}).toContainExactly([{ name: "foo" }])
|
}).toContainExactly([{ name: "foo" }])
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it("should not coerce string to date for string columns", async () => {
|
||||||
|
await expectQuery({
|
||||||
|
string: { name: "2020-01-01" },
|
||||||
|
}).toFindNothing()
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe("range", () => {
|
describe("range", () => {
|
||||||
|
|
|
@ -20,7 +20,8 @@ export interface QuotaTriggeredRequest {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LicenseActivateRequest {
|
export interface LicenseActivateRequest {
|
||||||
installVersion?: string
|
installVersion: string
|
||||||
|
installId: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UpdateLicenseRequest {
|
export interface UpdateLicenseRequest {
|
||||||
|
|
Loading…
Reference in New Issue