1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: reactivity problem on BaseVirtualScroll component

This commit is contained in:
2022-05-11 11:27:29 +02:00
parent d494b17df7
commit 45b2eb2934
3 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,4 @@
import * as fs from 'fs';
import * as antares from 'common/interfaces/antares';
import { InsertRowsParams } from 'common/interfaces/tableApis';
import { ipcMain } from 'electron';
@ -5,8 +6,7 @@ import { faker } from '@faker-js/faker';
import moment from 'moment';
import { sqlEscaper } from 'common/libs/sqlEscaper';
import { TEXT, LONG_TEXT, ARRAY, TEXT_SEARCH, NUMBER, FLOAT, BLOB, BIT, DATE, DATETIME } from 'common/fieldTypes';
import * as customizations from 'common/customizations';
import * as fs from 'fs';
import customizations from 'common/customizations';
export default (connections: {[key: string]: antares.Client}) => {
ipcMain.handle('get-table-columns', async (event, params) => {