Jm Verastigue

Results 3 comments of Jm Verastigue

Was able to fix this by forcing overflow:visible on the mentions control, YMMV. Note that I had to remove the suggestionsPortalHost for this to work, hopefully it helps. ``` .mentions--singleLine{...

This seems to work: ``` import Dexie from 'dexie'; class DexieDBSingleton { static getDB() { const db = new Dexie("dbName"); db.version(4).stores({ tableName: '&id, col_1, col_2 }); db.open().catch(function (err) { console.error('Failed...

nice, that works. seems like the static cast was unnecessary.