Commit fdbbb05e authored by wuyongsheng's avatar wuyongsheng

Merge branch 'feat-20220608-projectdata' into 'release'

cn- Feat 20220608 projectdata

See merge request !51
parents 8fe2cc5a 6e80e2e5
......@@ -61,7 +61,11 @@ const MyDialog = (props: any) => {
{title}
</DialogTitle>
)}
<DialogContent>
<DialogContent
sx={{
minWidth: "400px",
}}
>
{props.children}
<IconButton
aria-label="delete"
......
......@@ -357,7 +357,7 @@ const ProjectData = observer(() => {
// table配置
const renderButtons = (item: any) => {
return (
<span>
<span style={{ whiteSpace: "nowrap" }}>
{!isAllDirectory && (
<Button
sx={{
......@@ -430,7 +430,7 @@ const ProjectData = observer(() => {
// 下载文件
const hanleDownloadFile = (item: any) => {
const downloadPath = path + item.name;
const downloadPath = path === "/" ? "/" : `${path}/${item.name}`;
CloudEController.JobFileDownload(
downloadPath,
fileToken as string,
......
......@@ -77,7 +77,7 @@
}
.projectOwnerTime {
display: flex;
justify-content: flex-start;
justify-content: space-between;
}
.projectOwner {
color: #565c66;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment