Default to running button actions for table blocks and add info

This commit is contained in:
Andrew Kingston 2022-11-23 16:14:43 +00:00
parent 1a472af342
commit 13b8ccc582
1 changed files with 12 additions and 10 deletions

View File

@ -4535,15 +4535,16 @@
{ {
"type": "radio", "type": "radio",
"key": "clickBehaviour", "key": "clickBehaviour",
"defaultValue": "details", "defaultValue": "actions",
"info": "Details side panel is only compatible with internal or SQL tables",
"options": [ "options": [
{
"label": "Show details side panel",
"value": "details"
},
{ {
"label": "Run actions", "label": "Run actions",
"value": "actions" "value": "actions"
},
{
"label": "Show details side panel",
"value": "details"
} }
] ]
}, },
@ -4584,15 +4585,16 @@
"key": "titleButtonClickBehaviour", "key": "titleButtonClickBehaviour",
"label": "On Click", "label": "On Click",
"dependsOn": "showTitleButton", "dependsOn": "showTitleButton",
"defaultValue": "new", "defaultValue": "actions",
"info": "New row side panel is only compatible with internal or SQL tables",
"options": [ "options": [
{
"label": "Show new row side panel",
"value": "new"
},
{ {
"label": "Run actions", "label": "Run actions",
"value": "actions" "value": "actions"
},
{
"label": "Show new row side panel",
"value": "new"
} }
] ]
}, },