File tree Expand file tree Collapse file tree
src/components/managementservice/tenants Expand file tree Collapse file tree Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments