Skip to content

Commit 9feb7a7

Browse files
committed
Add invites v5
1 parent d9fd1ac commit 9feb7a7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/managementservice/tenants/Tenant.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const TenantTable = () => {
128128
{addNewLabel()}
129129
</Button>
130130
<hr/>
131-
<Dialog open={open} onClose={handleClose}>
131+
<Dialog open={open} onClose={handleClose} fullWidth maxWidth="md">
132132
<DialogTitle>{manageItemLabel()}</DialogTitle>
133133
<DialogContent>
134134
<DialogContentText>

src/components/managementservice/tenants/TenantInviteConfig.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const TenantInviteConfigPanel = (props: TenantInviteConfigProps) => {
169169
label={smtpPortLabel()}
170170
required
171171
type="number"
172-
sx={{ flex: 1 }}
172+
sx={{ flex: 1, minWidth: 120 }}
173173
value={smtpPort}
174174
onChange={(e) => setSmtpPort(parseInt(e.target.value, 10) || 587)}
175175
/>
@@ -211,7 +211,7 @@ const TenantInviteConfigPanel = (props: TenantInviteConfigProps) => {
211211
<TextField
212212
label={imapPortLabel()}
213213
type="number"
214-
sx={{ flex: 1 }}
214+
sx={{ flex: 1, minWidth: 120 }}
215215
value={imapPort}
216216
onChange={(e) => setImapPort(parseInt(e.target.value, 10) || 993)}
217217
disabled={!imapHost}

0 commit comments

Comments
 (0)