We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e4107 commit 125af63Copy full SHA for 125af63
2 files changed
src/dashboard/dashboardPane.ts
@@ -28,11 +28,11 @@ export const dashboardPane: PaneDefinition = {
28
)
29
}
30
31
- authSession.events.on("login", () => {
+ authSession.events.on('login', () => {
32
// console.log('On Login')
33
runBuildPage()
34
})
35
- authSession.events.on("sessionRestore", () => {
+ authSession.events.on('sessionRestore', () => {
36
// console.log('On Session Restore')
37
38
src/outline/manager.js
@@ -490,7 +490,7 @@ export default function (context) {
490
491
492
// close the dashboard if user log out
493
- authSession.events.on("logout", closeDashboard)
+ authSession.events.on('logout', closeDashboard)
494
495
// finally - switch to showing dashboard
496
outlineContainer.style.display = 'none'
0 commit comments