pull/5370/head
yann300 4 months ago
parent 61857adc07
commit 471de68c7e
  1. 2
      apps/remix-ide-e2e/src/tests/plugin_api.ts
  2. 14
      libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx

@ -184,7 +184,7 @@ module.exports = {
.frameParent()
.useCss()
.clickLaunchIcon('udapp')
.waitForElementContainsText('#selectExEnvOptions button', 'Remix VM (Berlin)')
.waitForElementContainsText('#selectExEnvOptions button', 'VM Berlin Fork')
.clickLaunchIcon('localPlugin')
.useXpath()
// @ts-ignore

@ -37,13 +37,13 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
if (props.tagList) setAnyEnabled(props.tagList.some((key) => filterCon.keyValueMap[key]?.enabled))
else setAnyEnabled(filterCon?.keyValueMap['no tag']?.enabled)
if (!props.tagList || props.tagList.length == 0) setAnyEnabled(true)
setAnyEnabled(anyEnabled &&
(
props.title.toLowerCase().includes(filterCon.filter) ||
props.title.includes(filterCon.filter)) ||
props?.payload?.toLowerCase().includes(filterCon.filter) ||
props?.payload?.includes(filterCon.filter)
)
setAnyEnabled(anyEnabled &&
(
props.title.toLowerCase().includes(filterCon.filter) ||
props.title.includes(filterCon.filter)) ||
props?.payload?.toLowerCase().includes(filterCon.filter) ||
props?.payload?.includes(filterCon.filter)
)
}, [filterCon, props.tagList])
/*const listenOnExpand = (key) => {

Loading…
Cancel
Save