macOS release

This commit is contained in:
2021-05-20 17:52:50 -05:00
parent 70c69a79c7
commit 537c459f47
3 changed files with 25 additions and 21 deletions

View File

@@ -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>
);

View File

@@ -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)' }} />