This commit is contained in:
Flatlogic Bot 2025-09-02 22:58:48 +00:00
parent e566255f6f
commit f6126e3a5d
4 changed files with 21 additions and 4 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -77,6 +77,18 @@ export const loadColumns = async (
valueGetter: (params: GridValueGetterParams) =>
params?.value?.id ?? params?.value,
},
{
field: 'gioco',
headerName: 'Gioco',
flex: 1,
minWidth: 120,
filterable: false,
headerClassName: 'datagrid--header',
cellClassName: 'datagrid--cell',
valueGetter: (params: GridValueGetterParams) =>
params.row.tavolo?.gioco?.nome ?? '',
},
{
field: 'data_prenotazione',