Browse Source

dashboard display, translation

master
kelvin.yau 2 months ago
parent
commit
e425fb8ec4
2 changed files with 4 additions and 2 deletions
  1. +2
    -0
      src/app/api/jo/actions.ts
  2. +2
    -2
      src/components/DashboardPage/DashboardPage.tsx

+ 2
- 0
src/app/api/jo/actions.ts View File

@@ -22,8 +22,10 @@ export interface SaveJoResponse {
export interface SearchJoResultRequest extends Pageable { export interface SearchJoResultRequest extends Pageable {
code: string; code: string;
itemName?: string; itemName?: string;

} }



export interface SearchJoResultResponse { export interface SearchJoResultResponse {
records: JobOrder[]; records: JobOrder[];
total: number; total: number;


+ 2
- 2
src/components/DashboardPage/DashboardPage.tsx View File

@@ -87,7 +87,7 @@ const DashboardPage: React.FC<Props> = ({
</Grid> </Grid>
</Grid> </Grid>
</Grid> </Grid>
<Grid item xs={12} md={6}>
{/*<Grid item xs={12} md={6}>
<Grid container spacing={2}> <Grid container spacing={2}>
<Grid item xs={12} sm={6}> <Grid item xs={12} sm={6}>
<DashboardBox <DashboardBox
@@ -107,7 +107,7 @@ const DashboardPage: React.FC<Props> = ({
<DashboardLineChart /> <DashboardLineChart />
</Grid> </Grid>
</Grid> </Grid>
</Grid>
</Grid>*/}
</Grid> </Grid>
</CardContent> </CardContent>
</CollapsibleCard> </CollapsibleCard>


Loading…
Cancel
Save