This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
ci4s
/
ci4sManagement-cloud
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
1
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix: 分配用户创建时间为null
pull/240/head
cp3hnu
10 months ago
parent
b8049721df
commit
16d4b476f2
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
react-ui/src/pages/System/Role/authUser.tsx
+1
-1
react-ui/src/pages/System/Role/components/UserSelectorModal.tsx
+1
-1
react-ui/src/pages/System/Role/index.tsx
+ 1
- 1
react-ui/src/pages/System/Role/authUser.tsx
View File
@@ -113,7 +113,7 @@ const AuthUserTableList: React.FC = () => {
dataIndex: 'createTime',
valueType: 'dateRange',
render: (_, record) => {
return <span>{record.createTime.toString()} </span>;
return <span>{record.createTime
?
.toString()} </span>;
},
hideInSearch: true,
},
+ 1
- 1
react-ui/src/pages/System/Role/components/UserSelectorModal.tsx
View File
@@ -84,7 +84,7 @@ const UserSelectorModal: React.FC<DataScopeFormProps> = (props) => {
valueType: 'dateRange',
hideInSearch: true,
render: (_, record) => {
return <span>{record.createTime.toString()} </span>;
return <span>{record.createTime
?
.toString()} </span>;
},
},
];
+ 1
- 1
react-ui/src/pages/System/Role/index.tsx
View File
@@ -240,7 +240,7 @@ const RoleTableList: React.FC = () => {
dataIndex: 'createTime',
valueType: 'dateRange',
render: (_, record) => {
return <span>{record.createTime.toString()} </span>;
return <span>{record.createTime
?
.toString()} </span>;
},
search: {
transform: (value) => {
Write
Preview
Loading…
Cancel
Save