mv some ids

pull/1857/head
bunsenstraat 3 years ago
parent f093473112
commit 27e652dce1
  1. 2
      apps/remix-ide/src/app/components/main-panel.tsx
  2. 2
      libs/remix-ui/panel/src/lib/panel-header.tsx

@ -17,7 +17,7 @@ export class MainPanel extends AbstractPanel {
constructor (config) { constructor (config) {
super(profile) super(profile)
this.element = document.createElement('div') this.element = document.createElement('div')
this.element.setAttribute('class', 'mainPanelPluginsContainer') this.element.setAttribute('data-id', 'mainPanelPluginsContainer')
// this.config = config // this.config = config
} }

@ -21,7 +21,7 @@ const RemixUIPanelHeader = (props: RemixPanelProps) => {
}, [props]) }, [props])
return ( return (
<header data-id='sidePanelSwapitTitle' className='swapitHeader'><h6>{plugin?.profile.displayName || plugin?.profile.name}</h6> <header className='swapitHeader'><h6 data-id='sidePanelSwapitTitle'>{plugin?.profile.displayName || plugin?.profile.name}</h6>
{plugin?.profile.documentation ? (<a href={plugin.profile.documentation} className="titleInfo" title="link to documentation" target="_blank" rel="noreferrer"><i aria-hidden="true" className="fas fa-book"></i></a>) : ''} {plugin?.profile.documentation ? (<a href={plugin.profile.documentation} className="titleInfo" title="link to documentation" target="_blank" rel="noreferrer"><i aria-hidden="true" className="fas fa-book"></i></a>) : ''}
</header>) </header>)
} }

Loading…
Cancel
Save