fix mainpanel tab name

pull/5370/head
Joseph Izang 11 months ago committed by Aniket
parent 479690a157
commit 6ad84481c3
  1. 2
      apps/remix-ide/src/app/plugins/vyper-compilation-details.tsx

@ -51,7 +51,7 @@ export class VyperCompilationDetailsPlugin extends ViewPlugin {
async showDetails(sentPayload: any) {
const contractName = Object.entries(sentPayload).find(([key, value]) => key )
await this.call('tabs', 'focus', 'vyperCompilationDetails')
this.profile.displayName = `${contractName}`
this.profile.displayName = `${contractName[0]}`
this.payload = sentPayload
const active = await this.call('theme', 'currentTheme')
if (active.quality === 'dark') {

Loading…
Cancel
Save