Skip to content
Snippets Groups Projects

Resolve "Resolve peer dependency warnings"

Merged Dominik Seeger requested to merge 150-resolve-peer-dependency-warnings into master
All threads resolved!
4 files
+ 2178
1302
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -72,7 +72,7 @@ export default class AutoLogout extends Vue {
mounted () {
// show notification on unload if logged in
window.onbeforeunload = event => {
window.onbeforeunload = (event: BeforeUnloadEvent) => {
if (Authentication.isLoggedIn) {
// return something to trigger the confirmation dialog
// since firefox 44 it is no longer possible to show a custom confirmation message
Loading