@@ -19,7 +19,7 @@ import { isSaasMode } from "util/envUtils";
19
19
import { selectSystemConfig } from "redux/selectors/configSelectors" ;
20
20
import { default as Form } from "antd/es/form" ;
21
21
import { default as Input } from "antd/es/input" ;
22
- import { Pagination , Spin } from "antd" ;
22
+ import { Pagination , Spin , Tooltip } from "antd" ;
23
23
import { getUser } from "redux/selectors/usersSelectors" ;
24
24
import { getOrgCreateStatus } from "redux/selectors/orgSelectors" ;
25
25
import { useWorkspaceManager } from "util/useWorkspaceManager" ;
@@ -279,7 +279,12 @@ function OrganizationSetting() {
279
279
width : "150px" ,
280
280
render : ( createdAt : number ) => {
281
281
if ( ! createdAt ) return "-" ;
282
- return dayjs . unix ( createdAt ) . fromNow ( ) ;
282
+ return (
283
+ < Tooltip title = { dayjs . unix ( createdAt ) . format ( "YYYY/MM/DD HH:mm:ss" ) }
284
+ placement = "bottom" >
285
+ < span style = { { color : "#8b8fa3" } } > { dayjs . unix ( createdAt ) . fromNow ( ) } </ span >
286
+ </ Tooltip >
287
+ ) ;
283
288
} ,
284
289
} ,
285
290
{
@@ -288,7 +293,12 @@ function OrganizationSetting() {
288
293
width : "150px" ,
289
294
render : ( updatedAt : number ) => {
290
295
if ( ! updatedAt ) return "-" ;
291
- return dayjs . unix ( updatedAt ) . fromNow ( ) ;
296
+ return (
297
+ < Tooltip title = { dayjs . unix ( updatedAt ) . format ( "YYYY/MM/DD HH:mm:ss" ) }
298
+ placement = "bottom" >
299
+ < span style = { { color : "#8b8fa3" } } > { dayjs . unix ( updatedAt ) . fromNow ( ) } </ span >
300
+ </ Tooltip >
301
+ ) ;
292
302
} ,
293
303
} ,
294
304
{ title : " " , dataIndex : "operation" , width : "208px" } ,
0 commit comments