File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ const isBlankValue = computed(() => {
7070})
7171
7272const selectedSubTab = computed (() => {
73- const { subTab = ' status ' } = tabStore .currentTab || {}
73+ const { subTab = BrowserTabType . Status } = tabStore .currentTab || {}
7474 return subTab
7575})
7676
@@ -104,7 +104,7 @@ watch(
104104 }"
105105 : value= " selectedSubTab"
106106 class = " content-sub-tab"
107- default- value= " status "
107+ : default- value= " BrowserTabType.Status.toString() "
108108 pane- class = " content-sub-tab-pane"
109109 placement= " top"
110110 tab- style= " padding-left: 10px; padding-right: 10px;"
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ const useTabStore = defineStore('tab', {
180180 } ) {
181181 let tabIndex = findIndex ( this . tabList , { name : server } )
182182 if ( tabIndex === - 1 ) {
183- subTab = subTab || BrowserTabType . KeyDetail
183+ subTab = subTab || BrowserTabType . Status
184184 const tabItem = new TabItem ( {
185185 name : server ,
186186 title : server ,
You can’t perform that action at this time.
0 commit comments