small bug fix
This commit is contained in:
parent
10e505d968
commit
db46bc2f9a
@ -565,7 +565,6 @@ smTextarea.innerHTML = `
|
|||||||
}
|
}
|
||||||
:host{
|
:host{
|
||||||
display: grid;
|
display: grid;
|
||||||
--accent-color: #4d2588;
|
|
||||||
--text-color: 17, 17, 17;
|
--text-color: 17, 17, 17;
|
||||||
--background-color: 255, 255, 255;
|
--background-color: 255, 255, 255;
|
||||||
--danger-color: red;
|
--danger-color: red;
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
//Required for blockchain API operators
|
//Required for blockchain API operators
|
||||||
apiURL: {
|
apiURL: {
|
||||||
FLO: ['https://livenet.flocha.in/','https://flosight.duckdns.org/'],
|
FLO: ['https://livenet.flocha.in/', 'https://flosight.duckdns.org/'],
|
||||||
FLO_TEST: ['https://testnet-flosight.duckdns.org/', 'https://testnet.flocha.in/']
|
FLO_TEST: ['https://testnet-flosight.duckdns.org/', 'https://testnet.flocha.in/']
|
||||||
},
|
},
|
||||||
adminID: "FRaBr5F665RVkQ1A1EYrMfbX2UF52vWjKr",
|
adminID: "FRaBr5F665RVkQ1A1EYrMfbX2UF52vWjKr",
|
||||||
@ -196,7 +196,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</sm-popup>
|
</sm-popup>
|
||||||
<!-- Create new sheet popup -->
|
<!-- Create new sheet popup -->
|
||||||
<sm-popup id="new_sheet_popup">
|
<sm-popup id="new_sheet_popup" open>
|
||||||
<header class="popup-header" slot="header">
|
<header class="popup-header" slot="header">
|
||||||
<svg class="icon" onclick="this.closest('sm-popup').hide()" viewBox="0 0 64 64">
|
<svg class="icon" onclick="this.closest('sm-popup').hide()" viewBox="0 0 64 64">
|
||||||
<title>close popup</title>
|
<title>close popup</title>
|
||||||
@ -8699,7 +8699,7 @@
|
|||||||
fetch_retry: function (apicall, rm_flosight) {
|
fetch_retry: function (apicall, rm_flosight) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let i = this.serverList.indexOf(rm_flosight)
|
let i = this.serverList.indexOf(rm_flosight)
|
||||||
if(i != -1)
|
if (i != -1)
|
||||||
this.serverList.splice(i, 1);
|
this.serverList.splice(i, 1);
|
||||||
this.curPos = floCrypto.randInt(0, this.serverList.length - 1)
|
this.curPos = floCrypto.randInt(0, this.serverList.length - 1)
|
||||||
this.fetch_api(apicall)
|
this.fetch_api(apicall)
|
||||||
@ -10897,4 +10897,4 @@
|
|||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user