diff --git a/src/components/sidebar/tabs/DeprecationWarningsTab.test.ts b/src/components/sidebar/tabs/DeprecationWarningsTab.test.ts index 6356e0f660..b597f9cb11 100644 --- a/src/components/sidebar/tabs/DeprecationWarningsTab.test.ts +++ b/src/components/sidebar/tabs/DeprecationWarningsTab.test.ts @@ -266,6 +266,7 @@ describe('DeprecationWarningsTab', () => { it('marks warnings seen as they arrive while the panel is open', async () => { const store = useDeprecationWarningsStore() + store.report({ message: 'before mount' }) renderTab() store.report({ message: 'arrived while open' }) diff --git a/src/components/sidebar/tabs/DeprecationWarningsTab.vue b/src/components/sidebar/tabs/DeprecationWarningsTab.vue index ce38114320..ecc24f1978 100644 --- a/src/components/sidebar/tabs/DeprecationWarningsTab.vue +++ b/src/components/sidebar/tabs/DeprecationWarningsTab.vue @@ -139,7 +139,7 @@