macOS release
This commit is contained in:
@@ -13,7 +13,7 @@ const ApplicationBusy = ({ title }) => {
|
||||
paddingLeft: 'calc(50% - 16px)',
|
||||
paddingTop: 'var(--default_spacing)',
|
||||
}}>
|
||||
<Loader color={'var(--heading_text_color)'} height={32} width={32} type='TailSpin' />
|
||||
<Loader color={'var(--heading_text_color)'} height={32} width={32} type="TailSpin" />
|
||||
</div>
|
||||
</Box>
|
||||
);
|
||||
|
||||
@@ -60,7 +60,7 @@ class AddEditHost extends IPCContainer {
|
||||
(i) =>
|
||||
(i.HostNameOrIp || '').trim() === this.state.HostNameOrIp &&
|
||||
i.Protocol === this.state.Protocol &&
|
||||
i.ApiPort == this.state.ApiPort,
|
||||
i.ApiPort == this.state.ApiPort
|
||||
)
|
||||
) {
|
||||
this.props.notifyError(`Portal already exists`);
|
||||
@@ -189,18 +189,20 @@ class AddEditHost extends IPCContainer {
|
||||
</div>
|
||||
<div style={{ height: 'var(--default_spacing)' }} />
|
||||
<div style={{ display: 'flex', flexDirection: 'row' }}>
|
||||
<Text noOwner text={'Authentication URL (premium)'}
|
||||
textAlign={'left'} type={'Heading2'} style={{ marginRight: 'auto' }} />
|
||||
<Text
|
||||
noOwner
|
||||
text={'Authentication URL (premium)'}
|
||||
textAlign={'left'}
|
||||
type={'Heading2'}
|
||||
style={{ marginRight: 'auto' }}
|
||||
/>
|
||||
{allowTestLogon ? (
|
||||
<a
|
||||
href={'#'}
|
||||
onClick={
|
||||
(e) => {
|
||||
this.handleTestLogon();
|
||||
e.preventDefault();
|
||||
}
|
||||
}
|
||||
>
|
||||
onClick={(e) => {
|
||||
this.handleTestLogon();
|
||||
e.preventDefault();
|
||||
}}>
|
||||
<u>test logon</u>
|
||||
</a>
|
||||
) : null}
|
||||
@@ -240,13 +242,13 @@ class AddEditHost extends IPCContainer {
|
||||
<p>
|
||||
<b>
|
||||
{'Portal URL: ' +
|
||||
this.state.Protocol +
|
||||
'://' +
|
||||
this.state.HostNameOrIp +
|
||||
((this.state.Protocol === 'http' && this.state.ApiPort != 80) ||
|
||||
(this.state.Protocol === 'https' && this.state.ApiPort != 443)
|
||||
? ':' + this.state.ApiPort.toString()
|
||||
: '')}
|
||||
this.state.Protocol +
|
||||
'://' +
|
||||
this.state.HostNameOrIp +
|
||||
((this.state.Protocol === 'http' && this.state.ApiPort != 80) ||
|
||||
(this.state.Protocol === 'https' && this.state.ApiPort != 443)
|
||||
? ':' + this.state.ApiPort.toString()
|
||||
: '')}
|
||||
</b>
|
||||
</p>
|
||||
<div style={{ height: 'var(--default_spacing)' }} />
|
||||
|
||||
Reference in New Issue
Block a user