Skip to content

Commit 3778cd0

Browse files
joeizangAniket-Engg
authored andcommitted
fix mainpanel tab name
1 parent cb7be61 commit 3778cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/remix-ide/src/app/plugins/vyper-compilation-details.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class VyperCompilationDetailsPlugin extends ViewPlugin {
5151
async showDetails(sentPayload: any) {
5252
const contractName = Object.entries(sentPayload).find(([key, value]) => key )
5353
await this.call('tabs', 'focus', 'vyperCompilationDetails')
54-
this.profile.displayName = `${contractName}`
54+
this.profile.displayName = `${contractName[0]}`
5555
this.payload = sentPayload
5656
const active = await this.call('theme', 'currentTheme')
5757
if (active.quality === 'dark') {

0 commit comments

Comments
 (0)