fix ui address bug and streamline install flow

This commit is contained in:
Matt Hill
2021-09-08 21:51:01 -06:00
parent 2d8f49e877
commit 8ac20b3894
12 changed files with 78 additions and 82 deletions

View File

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