Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…rontend into develop
  • Loading branch information
leary423 committed Nov 7, 2023
2 parents 7698ec2 + 7079a5a commit 189e06d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ const actionOptions = ref([
]);
const goPage = (val:string)=>{
actionVal.value = 'All Action'
console.log('goPage', val)
if(val=='Dashboard'){
router.push(`/projects/projectsDashboard?id=${route.query.id}`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<label v-if="indexStep == 1">Invoke Contract Method: </label>
</div>
<div class="border border-solid border-[#EBEBEB] bg-[#F6F6F6] px-[15px] py-[10px] rounded-[8px] max-w-[530px] break-all">
{{ itemStep.contractName + '.' + itemStep.method + '(' + itemStep.params.join(', ') + ')' }}
{{ itemStep.contractName + '.' + itemStep.method + '(' + itemStep.params.join(', ')+' ,'+itemStep.value + ')' }}
</div>
</div>
</div>
Expand Down

0 comments on commit 189e06d

Please sign in to comment.