mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
no init
setup complete fix and minor copy changes return SetupResult on setup.complete
This commit is contained in:
committed by
Aiden McClelland
parent
df16943502
commit
61ee46f289
@@ -26,9 +26,6 @@ export class MarkdownPage {
|
||||
if (!this.content) {
|
||||
this.content = await this.embassyApi.getStatic(this.contentUrl)
|
||||
}
|
||||
} catch (e) {
|
||||
this.loadingError = getErrorMessage(e)
|
||||
} finally {
|
||||
this.loading = false
|
||||
await pauseFor(50)
|
||||
const links = document.links
|
||||
@@ -39,6 +36,9 @@ export class MarkdownPage {
|
||||
links[i].className += ' externalLink'
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
this.loadingError = getErrorMessage(e)
|
||||
this.loading = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -110,7 +110,7 @@ export class AppShowStatusComponent {
|
||||
const { id, title, version } = this.pkg.manifest
|
||||
const hasDependents = !!Object.keys(
|
||||
this.pkg.installed['current-dependents'],
|
||||
).filter(depId => depId !== this.pkg.manifest.id).length
|
||||
).filter(depId => depId !== id).length
|
||||
|
||||
if (!hasDependents) {
|
||||
const loader = await this.loadingCtrl.create({
|
||||
|
||||
Reference in New Issue
Block a user