Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb27852e

Browse files
committed
improve time columns UI
1 parent0224c0b commitb27852e

File tree

1 file changed

+13
-3
lines changed
  • client/packages/lowcoder/src/pages/setting/organization

1 file changed

+13
-3
lines changed

‎client/packages/lowcoder/src/pages/setting/organization/orgList.tsx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { isSaasMode } from "util/envUtils";
1919
import{selectSystemConfig}from"redux/selectors/configSelectors";
2020
import{defaultasForm}from"antd/es/form";
2121
import{defaultasInput}from"antd/es/input";
22-
import{Pagination,Spin}from"antd";
22+
import{Pagination,Spin,Tooltip}from"antd";
2323
import{getUser}from"redux/selectors/usersSelectors";
2424
import{getOrgCreateStatus}from"redux/selectors/orgSelectors";
2525
import{useWorkspaceManager}from"util/useWorkspaceManager";
@@ -279,7 +279,12 @@ function OrganizationSetting() {
279279
width:"150px",
280280
render:(createdAt:number)=>{
281281
if(!createdAt)return"-";
282-
returndayjs.unix(createdAt).fromNow();
282+
return(
283+
<Tooltiptitle={dayjs.unix(createdAt).format("YYYY/MM/DD HH:mm:ss")}
284+
placement="bottom">
285+
<spanstyle={{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-
returndayjs.unix(updatedAt).fromNow();
296+
return(
297+
<Tooltiptitle={dayjs.unix(updatedAt).format("YYYY/MM/DD HH:mm:ss")}
298+
placement="bottom">
299+
<spanstyle={{color:"#8b8fa3"}}>{dayjs.unix(updatedAt).fromNow()}</span>
300+
</Tooltip>
301+
);
292302
},
293303
},
294304
{title:" ",dataIndex:"operation",width:"208px"},

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp