@@ -19,7 +19,7 @@ import { isSaasMode } from "util/envUtils";
1919import { selectSystemConfig } from "redux/selectors/configSelectors" ;
2020import { default as Form } from "antd/es/form" ;
2121import { default as Input } from "antd/es/input" ;
22- import { Pagination , Spin } from "antd" ;
22+ import { Pagination , Spin , Tooltip } from "antd" ;
2323import { getUser } from "redux/selectors/usersSelectors" ;
2424import { getOrgCreateStatus } from "redux/selectors/orgSelectors" ;
2525import { useWorkspaceManager } from "util/useWorkspaceManager" ;
@@ -279,7 +279,12 @@ function OrganizationSetting() {
279279 width : "150px" ,
280280 render : ( createdAt : number ) => {
281281 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+ ) ;
283288 } ,
284289 } ,
285290 {
@@ -288,7 +293,12 @@ function OrganizationSetting() {
288293 width : "150px" ,
289294 render : ( updatedAt : number ) => {
290295 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+ ) ;
292302 } ,
293303 } ,
294304 { title : " " , dataIndex : "operation" , width : "208px" } ,
0 commit comments