Forum Discussion
SupraCupra
Jun 20, 2024Copper Contributor
More > Workflow and Details missing from right click on SharePoint List
Howdy all, for one of my client's SharePoint, I am unable to access the Workflow or details pane for all of their lists. I utilise Nintex 365 workflows for this client so it's completely blocking m...
SupraCupra
Jun 21, 2024Copper Contributor
Found the reason behind this. All the lists in this site had the following formatting that hid the new and delete buttons. This caused those selections to disappear for whatever reason.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json",
"commandBarProps": {
"commands": [
{
"key": "new",
"hide": true
},
{
"key": "delete",
"hide": true
}
]
}
}
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json",
"commandBarProps": {
"commands": [
{
"key": "new",
"hide": true
},
{
"key": "delete",
"hide": true
}
]
}
}