examlple: Make the items in searchbox more readable.

This commit is contained in:
Mentalflow 2023-07-24 01:20:23 +08:00
parent c23c0b5f42
commit 2d8a05f310
No known key found for this signature in database
GPG Key ID: 5AE68D4401A2EE71

View File

@ -385,6 +385,11 @@ FluObject{
for(var i=0;i<items.length;i++){ for(var i=0;i<items.length;i++){
var item = items[i] var item = items[i]
if(item instanceof FluPaneItem){ if(item instanceof FluPaneItem){
if (item.parent instanceof FluPaneItemExpander)
{
arr.push({title:`${item.parent.title} -> ${item.title}`,key:item.key})
}
else
arr.push({title:item.title,key:item.key}) arr.push({title:item.title,key:item.key})
} }
} }