What Should Happen
I am trying to hide "Share" option in list command bar using JSON formatting. I have tried below JSON in view formatting but it is not hiding the "Share" option.
{
"commandBarProps": {
"commands": [
{
"key": "share",
"hide": true
}
]
}
}
I have also tried this JSON specifying all selectionModes for testing.
{
"commandBarProps": {
"commands": [
{
"key": "share",
"hide": true,
"selectionModes": [
"SingleSelection",
"MultiSelection",
"NoSelection"
]
}
]
}
}
What Actually Happens
As per the Command bar customization syntax reference documentation, "Share" option should be hidden from command bar when using any one of the above JSON codes.
Screenshot related to this issue:

What Should Happen
I am trying to hide "Share" option in list command bar using JSON formatting. I have tried below JSON in view formatting but it is not hiding the "Share" option.
I have also tried this JSON specifying all
selectionModesfor testing.What Actually Happens
As per the Command bar customization syntax reference documentation, "Share" option should be hidden from command bar when using any one of the above JSON codes.
Screenshot related to this issue: