Jose Rego
Jose Rego
Example with indexes and in TS ``` import { Knex } from 'knex'; export async function up(knex: Knex): Promise { return knex.schema.createTable('sessions', (table) => { table.string('sid').notNullable().primary(); table.json('sess').notNullable(); table.timestamp('expired').notNullable().index(); }); }...
In my case I want the legend at the top to not overflow the grid.  The solution from @Houstoten didn't work for me as...
@Ovilia That makes perfect sense š Is there an example of how we can access the main (legend, grid) elements position and size via the echarts instance so we can...
Should we make a patch with the new node-pre-gyp version while we work on the PR that will remove it completely ?
> what is the difference between an .env file and docker/.env .env ( this was used in install.sh some time ago, I don't think we use this anymore š¤ )...
Iām in favour of changing all the results to a monospaced font, not just numbers.
> But maybe the table would look very inconsistent using two fonts This. Maybe we could use a font that has both versions.
fyi: I tried enabling [source map](https://vitejs.dev/config/build-options.html#build-sourcemap) and got a `FATAL ERROR: MarkCompactCollector: young object promotion failed Allocation failed - JavaScript heap out of memory` š don't know if we can...
@IrakliJani pushed a fix for the pegjs import that was preventing the app to run. Also pushed a potential fix for the out of memory by chuncking manually the output....
I think the styling the user wants will depend on the query results. Instead of a fixed unit format, should it be a more flexible flag ? ```useCompactNumber: true /...