Forum Discussion
Marc Jordana Reist
Feb 04, 2020Brass Contributor
Change tabs sort in Teams app manifest for personal tabs
Hello there, We are developing an application for Teams that has both a Web App tab and a Bot tab, both within a personal tab scope. We have tried many things but we can't find the way to rea...
- Jan 21, 2022Now it's possible since the schema version 1.7. https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/create-personal-tab?tabs=nodejs#reorder-static-personal-tabs. Add a new static tab where you need it and make sure the entityId is "conversations":
{
"staticTabs":[
{
},
{
"entityId":"conversations",
"scopes":[
"personal"
]
}
]
}
Anatoly Mironov
Jan 21, 2022Brass Contributor
Now it's possible since the schema version 1.7. https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/create-personal-tab?tabs=nodejs#reorder-static-personal-tabs. Add a new static tab where you need it and make sure the entityId is "conversations":
{
"staticTabs":[
{
},
{
"entityId":"conversations",
"scopes":[
"personal"
]
}
]
}
{
"staticTabs":[
{
},
{
"entityId":"conversations",
"scopes":[
"personal"
]
}
]
}
- Marc Jordana ReistJan 24, 2022Brass Contributor
Anatoly Mironov Thank you, thank you and thank you for answering this old question!!! You are absolutely right, and I didn't realize. I checked and you can even change it from the App Studio in Teams now. I've been waiting so long for this :D. You have a paid drink in Barcelona.