Pane login issues after move to pivot. #400
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://github.com/SolidOS/solid-panes/blob/main/src/dashboard/dashboardPane.ts and editProfile pane don't seem to act correctly.
Developer console spits this out
link.href = '/common/css/bootstrap.min.css' seems to be a clue.
temporary remedy was 'http://localhost:8080/src/dashboard' incase you could bypass this error with a local .css bootstrap work around. for local static http server command is http-server ./.
This was to bypass internet browser security's attempt to flag a localized file.
Even with a work around, its still blank.
authSession.onLogin(() => {
// console.log('On Login')
runBuildPage()
})
authSession.onSessionRestore(() => {
// console.log('On Session Restore')
runBuildPage()
})
// console.log('Initial Load')
runBuildPage()
}
Within this code, the login window will just keep "rebuilding" until you logout or until this code is removed.
declaration is also flagged.