Started automated OpenAPI naming
This commit is contained in:
@@ -500,6 +500,10 @@ const Apps = (props) => {
|
||||
}
|
||||
|
||||
const handleSearchChange = (search) => {
|
||||
if (apps === undefined || apps === null || apps.length === 0) {
|
||||
return
|
||||
}
|
||||
|
||||
const searchfield = search.toLowerCase()
|
||||
const newapps = apps.filter(data => data.name.toLowerCase().includes(searchfield) || data.description.toLowerCase().includes(searchfield))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user