Skip to content

Commit

Permalink
fix: numeric scale displayed on non decimal fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Mar 17, 2022
1 parent e4bd747 commit db628f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/libs/clients/MySQLClient.js
Expand Up @@ -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,
Expand Down
1 change: 0 additions & 1 deletion src/renderer/scss/main.scss
Expand Up @@ -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 );
}
}
Expand Down

0 comments on commit db628f7

Please sign in to comment.