diff --git a/src/modules/pages/maintain/forms/components/form.jdbc.ts b/src/modules/pages/maintain/forms/components/form.jdbc.ts index d8a0a37..3af4cf6 100644 --- a/src/modules/pages/maintain/forms/components/form.jdbc.ts +++ b/src/modules/pages/maintain/forms/components/form.jdbc.ts @@ -658,7 +658,7 @@ export class FormJdbc extends BI.Widget { } private checkValueRange(value: string) { - return Number(value) <= INT_MAX_VALUE && Number(value) >= INT_MIN_VALUE; + return parseInt(value, 0) <= INT_MAX_VALUE && parseInt(value, 0) >= INT_MIN_VALUE; } private getDrivers() {