From f2c04621a5134710488873207be6b5219e5d6518 Mon Sep 17 00:00:00 2001 From: GyDi <segydi@foxmail.com> Date: Thu, 10 Feb 2022 01:14:57 +0800 Subject: [PATCH] feat: adjust profile item menu --- src/components/profile-item.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/profile-item.tsx b/src/components/profile-item.tsx index 9870477..4127c92 100644 --- a/src/components/profile-item.tsx +++ b/src/components/profile-item.tsx @@ -238,9 +238,15 @@ const ProfileItem: React.FC<Props> = (props) => { anchorReference="anchorPosition" > <MenuItem onClick={onForceSelect}>Select</MenuItem> - <MenuItem onClick={onView}>View</MenuItem> - <MenuItem onClick={onUpdateWrapper(false)}>Update</MenuItem> - <MenuItem onClick={onUpdateWrapper(true)}>Update(Proxy)</MenuItem> + {isUrlMode ? ( + <> + <MenuItem onClick={onView}>View</MenuItem> + <MenuItem onClick={onUpdateWrapper(false)}>Update</MenuItem> + <MenuItem onClick={onUpdateWrapper(true)}>Update(Proxy)</MenuItem> + </> + ) : ( + <MenuItem onClick={onView}>Edit</MenuItem> + )} <MenuItem onClick={onDelete}>Delete</MenuItem> </Menu> </> -- GitLab