Skip to content

Commit

Permalink
improve: Dev App Table 小屏显示等
Browse files Browse the repository at this point in the history
  • Loading branch information
Mmx233 committed Dec 19, 2023
1 parent 37a798b commit 5a4c0a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions web/src/components/user/dev/app/AppTableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,15 @@ export const AppTableRow: FC<Props> = ({
)}
</TableCell>
<TableCell>{app.appCode}</TableCell>
<TableCell>
<TableCell
sx={{
textWrap: "balance",
}}
>
{app.permitAllGroup
? "ALL"
: app.groups.length > 0
? app.groups.map((group) => group.name).join("")
? app.groups.map((group) => group.name).join(", ")
: "NONE"}
</TableCell>
<TableCell>{app.callback}</TableCell>
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/User/pages/Dev/ssh/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const Ssh: FC = () => {
</Stack>

<LoadingButton
variant={"contained"}
variant={"outlined"}
loading={isUnlockLoading}
onClick={onShowSshKeys}
startIcon={<Fingerprint />}
Expand Down

0 comments on commit 5a4c0a4

Please sign in to comment.