diff --git a/src/components/job/task/executions/show.module.css b/src/components/job/task/executions/show.module.css index 0c5d1d80..a4137f58 100644 --- a/src/components/job/task/executions/show.module.css +++ b/src/components/job/task/executions/show.module.css @@ -76,3 +76,11 @@ word-break: normal; overflow: hidden; } + +.tableRow { + border-bottom: dashed var(--palette-divider); +} + +.tableRow:last-child { + border-bottom: none; +} diff --git a/src/components/job/task/executions/show.tsx b/src/components/job/task/executions/show.tsx index 207b0a96..db64f1de 100644 --- a/src/components/job/task/executions/show.tsx +++ b/src/components/job/task/executions/show.tsx @@ -571,7 +571,14 @@ export default function ShowExecutions() { Array.isArray(failure) && failure.map((item: any) => { return ( - + {item?.hostname} @@ -595,7 +602,7 @@ export default function ShowExecutions() { size="small" variant="outlined" sx={{ - borderRadius: '0%', + borderRadius: '0.2rem', backgroundColor: item?.host_type === 'super' ? 'var( --description-color)' : 'var(--button-color)', color: item?.host_type === 'super' ? '#FFFFFF' : '#FFFFFF', diff --git a/src/components/users/index.tsx b/src/components/users/index.tsx index 83b5fe11..e899663a 100644 --- a/src/components/users/index.tsx +++ b/src/components/users/index.tsx @@ -193,6 +193,7 @@ export default function Users() { setAnchorElement(null); setUserDetail(false); setSwitchUser(false); + setSelectedRow(null); }; const handleSubmit = async () => {