Skip to content

Commit

Permalink
Fixed reload issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nricciardi committed May 17, 2023
1 parent feca07c commit 6d35804
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/dist/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
});

</script>
<script src="runtime.89bfad0fe920d2c9.js" type="module"></script><script src="polyfills.794d7387aea30963.js" type="module"></script><script src="main.cb75d6954a204369.js" type="module"></script>
<script src="runtime.89bfad0fe920d2c9.js" type="module"></script><script src="polyfills.794d7387aea30963.js" type="module"></script><script src="main.ea5d448777f93853.js" type="module"></script>

</body></html>

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const routes: Routes = [
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
imports: [RouterModule.forRoot(routes, { useHash: true })],
exports: [RouterModule],
providers: [AuthGuardService, RoleGuardService]
})
Expand Down
4 changes: 1 addition & 3 deletions lib/app/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import os

import eel
from typing import List
from lib.app.service.auth import AuthService
Expand All @@ -16,7 +14,7 @@
class AppManager:

VERSION: str = "1.0.0"
SHUTDOWN_DELAY = 5
SHUTDOWN_DELAY = 500
SHUTDOWN_DELAY_IN_DEBUG_MODE = 600

def __init__(self):
Expand Down

0 comments on commit 6d35804

Please sign in to comment.