From 0912f5fc10701ec3eb549e17d42afd3e15600306 Mon Sep 17 00:00:00 2001 From: Jamie V Date: Tue, 7 Jan 2025 14:46:16 -0800 Subject: [PATCH] anytime a selection is updated, select the first (top priority) tab --- src/ui/inspector/InspectorTabs.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/inspector/InspectorTabs.vue b/src/ui/inspector/InspectorTabs.vue index 085267e5ced..fd6f72a5592 100644 --- a/src/ui/inspector/InspectorTabs.vue +++ b/src/ui/inspector/InspectorTabs.vue @@ -88,6 +88,8 @@ export default { showTab: view.showTab }; }); + + this.selectTab(this.visibleTabs[0]); }, isSelected(tab) { return this.selectedTab?.key === tab.key;