Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/next' into feature/FOUR-9486
Browse files Browse the repository at this point in the history
  • Loading branch information
pmPaulis committed Sep 14, 2023
2 parents b2c190d + 2f5589a commit 5ad69c7
Show file tree
Hide file tree
Showing 8 changed files with 543 additions and 282 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@processmaker/screen-builder",
"version": "2.77.3",
"version": "2.77.4",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
Expand Down
8 changes: 7 additions & 1 deletion src/components/accordions.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ export default [
open: false,
},
{
name: (control) => control.component === 'FormRecordList' ? 'Columns' : 'Data Source',
name(control) {
if (control.component === "AiSection") {
return "AI Section";
}

return control.component === "FormRecordList" ? "Columns" : "Data Source";
},
fields: [
'fields',
{ name: 'options', hideFor: 'FormMultiColumn' },
Expand Down
Loading

0 comments on commit 5ad69c7

Please sign in to comment.