diff --git a/src/main/libs/clients/SQLiteClient.ts b/src/main/libs/clients/SQLiteClient.ts index 60801c44..b8b37ae7 100644 --- a/src/main/libs/clients/SQLiteClient.ts +++ b/src/main/libs/clients/SQLiteClient.ts @@ -296,7 +296,13 @@ export class SQLiteClient extends AntaresCore { // ADD FIELDS fields.forEach(field => { const typeInfo = this.getTypeInfo(field.type); - const length = typeInfo?.length ? field.enumValues || field.numLength || field.charLength || field.datePrecision : false; + const length = typeInfo?.length + ? field.enumValues || + field.numLength || + field.numPrecision || + field.charLength || + field.datePrecision + : false; newColumns.push(`"${field.name}" ${field.type.toUpperCase()}${length ? `(${length})` : ''} diff --git a/src/renderer/components/BaseIcon.vue b/src/renderer/components/BaseIcon.vue index ddd1095f..2ab80780 100644 --- a/src/renderer/components/BaseIcon.vue +++ b/src/renderer/components/BaseIcon.vue @@ -57,7 +57,6 @@ const iconFlip = computed(() => { } .flip-both { - /* flip both */ transform: scale(-1, -1); }