style: polish job details attachments and add job modal

This commit is contained in:
cesnimda
2026-03-22 14:29:27 +01:00
parent ef04961c9f
commit 9908674b8f
4 changed files with 37 additions and 10 deletions
+14 -1
View File
@@ -169,7 +169,7 @@ export default function Attachments({ jobId }: { jobId: number }) {
</Button>
</Box>
<TableContainer sx={{ borderRadius: 2, border: "1px solid", borderColor: "divider" }}>
<TableContainer sx={{ borderRadius: 3, border: "1px solid", borderColor: "divider" }}>
<Table size="small">
<TableHead>
<TableRow>
@@ -253,3 +253,16 @@ export default function Attachments({ jobId }: { jobId: number }) {
</Box>
);
}
ialogActions>
<Button
onClick={() => {
setPreviewOpen(false);
}}
>
Close
</Button>
</DialogActions>
</Dialog>
</Box>
);
}