mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
examlple: Make the items in searchbox more readable.
This commit is contained in:
parent
c23c0b5f42
commit
2d8a05f310
@ -385,7 +385,12 @@ 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){
|
||||||
arr.push({title:item.title,key:item.key})
|
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})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return arr
|
return arr
|
||||||
|
Loading…
Reference in New Issue
Block a user