mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
fix ui address bug and streamline install flow
This commit is contained in:
committed by
Aiden McClelland
parent
45d945db2e
commit
c5585f7f35
@@ -366,7 +366,7 @@ export module Mock {
|
||||
rpc: {
|
||||
name: 'RPC interface',
|
||||
description: 'Good for connecting to your node at a distance.',
|
||||
ui: true,
|
||||
ui: false,
|
||||
'tor-config': {
|
||||
'port-mapping': { },
|
||||
},
|
||||
|
||||
@@ -77,7 +77,6 @@ export class MockApiService extends ApiService {
|
||||
await pauseFor(2000)
|
||||
let entries
|
||||
if (Math.random() < .2) {
|
||||
console.log('last page')
|
||||
entries = Mock.ServerLogs
|
||||
} else {
|
||||
const arrLength = params.limit ? Math.ceil(params.limit / Mock.ServerLogs.length) : 10
|
||||
@@ -324,7 +323,6 @@ export class MockApiService extends ApiService {
|
||||
await pauseFor(2000)
|
||||
let entries
|
||||
if (Math.random() < .2) {
|
||||
console.log('last page')
|
||||
entries = Mock.PackageLogs
|
||||
} else {
|
||||
const arrLength = params.limit ? Math.ceil(params.limit / Mock.PackageLogs.length) : 10
|
||||
|
||||
Reference in New Issue
Block a user