Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85caed6 commit 7395bfdCopy full SHA for 7395bfd
client/packages/lowcoder/src/pages/ApplicationV2/HomeLayout.tsx
@@ -359,8 +359,8 @@ export function HomeLayout(props: HomeLayoutProps) {
359
const resList: HomeRes[] = displayElements
360
.filter((e) =>
361
searchValue
362
- ? e.name.toLocaleLowerCase().includes(searchValue.toLocaleLowerCase()) ||
363
- e.createBy.toLocaleLowerCase().includes(searchValue.toLocaleLowerCase())
+ ? e.name?.toLocaleLowerCase().includes(searchValue?.toLocaleLowerCase()) ||
+ e.createBy?.toLocaleLowerCase().includes(searchValue?.toLocaleLowerCase())
364
: true
365
)
366
.filter((e) => {
0 commit comments