Fix the fix

This commit is contained in:
Matt Isenhower 2024-11-07 09:31:28 -08:00
parent 2997c985d2
commit 38b5d16467
3 changed files with 3 additions and 2 deletions

View File

@ -23,6 +23,7 @@ module.exports = {
'vue/html-self-closing': ['warn', { html: { void: 'always' } }],
'vue/no-deprecated-filter': 'off',
'vue/require-toggle-inside-transition': 'off',
'vue/no-deprecated-destroyed-lifecycle': 'off',
},
'globals': {
'__dirname': 'readonly',

View File

@ -277,7 +277,7 @@ export default {
this.startUpdatingNow();
this.startUpdatingData();
},
beforeUnmount() {
beforeDestroy() {
this.stopUpdatingNow();
this.stopUpdatingData();
this.shutdown();

View File

@ -66,7 +66,7 @@ export default {
mounted() {
opened(this);
},
beforeUnmount() {
beforeDestroy() {
closed(this);
},
methods: {