Skip to content

Commit

Permalink
01.03.0
Browse files Browse the repository at this point in the history
fixed DWC RN mismatch
  • Loading branch information
MintyTrebor authored Apr 24, 2024
1 parent c52acf5 commit 88c712f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/ReleaseMgrMainPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -791,12 +791,12 @@ export default Vue.extend({
if(tabVal == 1 && this.currView !="duetRRFRI"){
this.currView = null;
this.currView = "duetRRFRI";
console.log("TAB3")
//console.log("TAB3")
this.currTabIndex = "3";
}else if(tabVal == 0 && this.currView !="duetRRFRN"){
this.currView = null;
this.currView = "duetRRFRN";
console.log("TAB2")
//console.log("TAB2")
this.currTabIndex = "2";
}
},
Expand Down Expand Up @@ -1017,7 +1017,7 @@ export default Vue.extend({
//console.log("tmpTag:", tmpTag)
let majorVNumStr: string = tmpTag.substring(0,1);
let minorVNumStr: string = tmpTag.substring(2,3);
let subVNumStr = "0";
let subVNumStr: string = tmpTag.substring(4,5);
let prefix = "";
let prefix2 = "";
let suffix = "";
Expand Down

0 comments on commit 88c712f

Please sign in to comment.