@ -33,18 +33,18 @@ const RemixUIPanelHeader = (props: RemixPanelProps) => {
{ plugin ? . profile . documentation && ( < a href = { plugin . profile . documentation } className = "titleInfo mb-2" title = "link to documentation" target = "_blank" rel = "noreferrer" > < i aria - hidden = "true" className = "fas fa-book" > < / i > < / a > ) }
< / div >
< div className = "swapitHeaderInfoSection d-flex justify-content-between" data - id = 'swapitHeaderInfoSectionId' onClick = { toggleClass } title = "Plugin info" >
< i className = { ` px-2 ml-2 m t-1 ${ ! toggleExpander ? 'fas fa-angle-right' : 'fas fa-angle-down bg-light' } ` } aria - hidden = "true" > < / i >
< i className = { ` px-2 ml-2 p t-1 ${ ! toggleExpander ? 'fas fa-angle-right' : 'fas fa-angle-down bg-light' } ` } aria - hidden = "true" > < / i >
< / div >
< / div >
< / div >
< div className = { ` bg-light p-3 pt-1 border-bottom flex-column ${ toggleExpander ? "d-flex" : "d-none" } ` } >
{ plugin ? . profile ? . author && < span className = "d-flex flex-row align-items-center" >
< label className = "mb-0 pr-2" > Author : < / label >
< span > { plugin ? . profile ? . author } < / span >
< span > { plugin ? . profile . author } < / span >
< / span > }
{ plugin ? . profile ? . maintainedBy && < span className = "d-flex flex-row align-items-center" >
< label className = "mb-0 pr-2" > Maintained by : < / label >
< span > { plugin ? . profile ? . maintainedBy } < / span >
< span > { plugin ? . profile . maintainedBy } < / span >
< / span > }
{ plugin ? . profile ? . documentation && < span className = "d-flex flex-row align-items-center" >
< label className = "mb-0 pr-2" > Documentation : < / label >
@ -54,7 +54,7 @@ const RemixUIPanelHeader = (props: RemixPanelProps) => {
< / span > }
{ plugin ? . profile ? . description && < span className = "d-flex flex-row align-items-baseline" >
< label className = "mb-0 pr-2" > Description : < / label >
< div > { plugin ? . profile ? . description } < / div >
< span > { plugin ? . profile . description } < / span >
< / span > }
{ plugin ? . profile ? . repo && < span className = "d-flex flex-row align-items-center" >
< a href = { plugin ? . profile ? . repo } target = "_blank" rel = "noreferrer" >