table data grid

This commit is contained in:
Jan Prochazka
2021-02-22 17:34:24 +01:00
parent 60c1090d6c
commit 1e540b3fe9
22 changed files with 928 additions and 5678 deletions

View File

@@ -2,7 +2,7 @@ import uuidv1 from 'uuid/v1';
import { openedTabs } from '../stores';
export default async function openNewTab(newTab, initialData = undefined, options = undefined) {
console.log('OPENING NEW TAB', newTab);
// console.log('OPENING NEW TAB', newTab);
const tabid = uuidv1();
openedTabs.update(tabs => [
...(tabs || []).map(x => ({ ...x, selected: false })),