fix: numeric scale displayed on non decimal fields

This commit is contained in:
Fabio Di Stasio 2022-03-17 18:17:59 +01:00
parent e4bd747381
commit db628f7722
2 changed files with 1 additions and 2 deletions

View File

@ -505,7 +505,7 @@ export class MySQLClient extends AntaresCore {
schema: field.TABLE_SCHEMA,
table: field.TABLE_NAME,
numPrecision: field.NUMERIC_PRECISION,
numScale: field.NUMERIC_SCALE,
numScale: Number(field.NUMERIC_SCALE),
numLength,
enumValues,
datePrecision: field.DATETIME_PRECISION,

View File

@ -171,7 +171,6 @@ option:checked {
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
}