jedcunningham commented on pull request #13903:
URL: https://github.com/apache/airflow/pull/13903#issuecomment-775296507
@jhtimmins I recently added an extra link to Docs and found it odd that I
needed to provide a category_icon, so I went and looked at FAB add_link
upstream and saw that it's unused for existing categories anyways. I also
noticed one couldn't create a top-level link if they wanted one, so I figured
it was worth a PR.
```python
appbuilder_menu_items = [
{"name": "Hello", "category": "Docs", "href": "https://google.com",},
{
"name": "labelled",
"label": "Hello (label)",
"category": "Docs",
"href": "https://google.com",
},
{"name": "Top Hello", "href": "https://google.com",},
]
```
Leads to:

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]