Potential fix/support for HTTPS
Removed the hard-coded http in the API url and instead calling window.location.protocol
This commit is contained in:
parent
b99ade74c7
commit
5cda6ece05
@ -1,4 +1,4 @@
|
||||
let apiUri = `http://${window.location.host.split(':')[0]}:6531`
|
||||
let apiUri = `${window.location.protocol}//${window.location.host.split(':')[0]}:6531`
|
||||
|
||||
if(getCookie("apiUri") != ""){
|
||||
apiUri = getCookie("apiUri");
|
||||
|
@ -940,8 +940,7 @@ footer-tag-popup::before{
|
||||
.section-item > .jobDetails > .jobProgressBar {
|
||||
margin: 5px;
|
||||
height: 10px;
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.section-item > .jobDetails > .jobProgressSpan {
|
||||
|
Loading…
Reference in New Issue
Block a user