mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fix(folders): add no folder present messaging in dropdown (#1118)
This commit is contained in:
parent
5ffcc14d68
commit
c31a578978
1 changed files with 1 additions and 0 deletions
|
|
@ -105,6 +105,7 @@ export const AppMenu = function AppMenu({ app, folders, foldersChanged, deleteAp
|
|||
onChange={(newVal) => {
|
||||
addAppToFolder(app.id, newVal);
|
||||
}}
|
||||
emptyMessage={folders.length === 0 ? 'No folders present' : 'Not found'}
|
||||
filterOptions={customFuzzySearch}
|
||||
placeholder="Select folder"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue