Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Repair bug
Browse files Browse the repository at this point in the history
Repair bug with inputs not dissapearing with scenario change.
  • Loading branch information
dudo50 committed Jul 17, 2023
1 parent ca91496 commit 066f6c5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions playground/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,18 +216,34 @@
methods: {
async assignOperation(value: any){
this.xcmMessageScenario = ""
this.hrmpPalletOperation = ""
this.palletXCMOperation = ""
this.assetOperation = ""
this.operation=value.target.value
},
async assignAssetOperation(value: any){
this.xcmMessageScenario = ""
this.hrmpPalletOperation = ""
this.palletXCMOperation = ""
this.assetOperation=value.target.value
},
async assignHRMPOperation(value: any){
this.xcmMessageScenario = ""
this.assetOperation = ""
this.palletXCMOperation = ""
this.hrmpPalletOperation=value.target.value
},
async assignXCMOperation(value: any){
this.hrmpPalletOperation = ""
this.assetOperation = ""
this.palletXCMOperation = ""
this.xcmMessageScenario=value.target.value
},
async assignXCMPalletOperation(value: any){
this.xcmMessageScenario = ""
this.assetOperation = ""
this.hrmpPalletOperation = ""
this.palletXCMOperation=value.target.value
},
async nodeAssign(value: any){
Expand Down

0 comments on commit 066f6c5

Please sign in to comment.