From 33c9236e457ed5656dd500ccefecba5768cf94cc Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 23 Dec 2024 04:15:57 +0200 Subject: [PATCH] cleanup --- src/components/tab_switcher/tab_switcher.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/tab_switcher/tab_switcher.jsx b/src/components/tab_switcher/tab_switcher.jsx index fad5020d..ded8ffcf 100644 --- a/src/components/tab_switcher/tab_switcher.jsx +++ b/src/components/tab_switcher/tab_switcher.jsx @@ -85,7 +85,6 @@ export default { setTab (index) { if (typeof this.onSwitch === 'function') { this.onSwitch.call(null, this.slots()[index].key) - console.log('DEBUG', this.slots()[index]) } this.active = index if (this.scrollableTabs) { @@ -151,7 +150,6 @@ export default { slot.props['delay-render'] = false delayRender = false } - console.log('DEBUG', !delayRender, !this.renderOnlyFocused, active) const renderSlot = (!delayRender && (!this.renderOnlyFocused || active)) ? slot : ''