fix build
This commit is contained in:
parent
fc4c42e20a
commit
460d813986
|
|
@ -47,12 +47,14 @@ export const CartPeekDrawer: React.FC<CartPeekDrawerProps> = ({
|
||||||
anchor="bottom"
|
anchor="bottom"
|
||||||
open={open}
|
open={open}
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
PaperProps={{
|
slotProps={{
|
||||||
sx: {
|
paper: {
|
||||||
borderTopLeftRadius: 20,
|
sx: {
|
||||||
borderTopRightRadius: 20,
|
borderTopLeftRadius: 20,
|
||||||
maxHeight: '78vh',
|
borderTopRightRadius: 20,
|
||||||
bgcolor: '#fff',
|
maxHeight: '78vh',
|
||||||
|
bgcolor: '#fff',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -443,7 +443,7 @@ export const TableLandingView: React.FC<TableLandingViewProps> = ({
|
||||||
<ListItemText
|
<ListItemText
|
||||||
primary={`Table ${table.table_number}`}
|
primary={`Table ${table.table_number}`}
|
||||||
secondary={`Seats ${table.capacity} · ${table.status}`}
|
secondary={`Seats ${table.capacity} · ${table.status}`}
|
||||||
primaryTypographyProps={{ fontWeight: 800 }}
|
slotProps={{ primary: { sx: { fontWeight: 800 } } }}
|
||||||
/>
|
/>
|
||||||
</ListItemButton>
|
</ListItemButton>
|
||||||
))}
|
))}
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ export const KDSKanban: React.FC<KDSKanbanProps> = ({
|
||||||
</Paper>
|
</Paper>
|
||||||
|
|
||||||
{/* 4 Column Kanban Board Grid */}
|
{/* 4 Column Kanban Board Grid */}
|
||||||
<Grid container spacing={1.5} alignItems="stretch">
|
<Grid container spacing={1.5} sx={{ alignItems: 'stretch' }}>
|
||||||
{columns.map((col) => {
|
{columns.map((col) => {
|
||||||
const colOrders = filteredOrders.filter((o) => o.status === col.status);
|
const colOrders = filteredOrders.filter((o) => o.status === col.status);
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue