File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
apps/remix-ide-e2e/src/tests
libs/remix-ui/tabs/src/lib Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ const tests = {
77
77
. waitForElementPresent ( '*[data-id="create-semaphore"]' )
78
78
. scrollAndClick ( '*[data-id="create-semaphore"]' )
79
79
. modalFooterOKClick ( 'TemplatesSelection' )
80
+ . pause ( )
80
81
// .waitForElementVisible('*[data-id="treeViewLitreeViewItemcircuits/semaphore.circom"]')
81
82
. waitForElementVisible ( {
82
83
locateStrategy : 'xpath' ,
Original file line number Diff line number Diff line change @@ -615,14 +615,14 @@ export const TabsUI = (props: TabsUIProps) => {
615
615
>
616
616
< TabList className = "d-flex flex-row align-items-center" >
617
617
{ props . tabs . map ( ( tab , i ) => (
618
- tab . show && < Tab className = "" key = { tab . name } data-id = { tab . id } >
618
+ < Tab className = { tab . show ? '' : 'd-none' } key = { tab . name } data-id = { tab . id } >
619
619
{ renderTab ( tab , i ) }
620
620
</ Tab >
621
621
) ) }
622
622
< div style = { { minWidth : '4rem' , height : '1rem' } } id = "dummyElForLastXVisibility" > </ div >
623
623
</ TabList >
624
624
{ props . tabs . map ( ( tab ) => (
625
- tab . show && < TabPanel key = { tab . name } > </ TabPanel >
625
+ < TabPanel key = { tab . name } > </ TabPanel >
626
626
) ) }
627
627
</ Tabs >
628
628
You can’t perform that action at this time.
0 commit comments