-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIO-9176: fix rewriting of component path in eachComponent
- Loading branch information
Maria.Golomb
committed
Oct 15, 2024
1 parent
e072cbd
commit 78ece1c
Showing
5 changed files
with
69 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
export default { | ||
type: 'form', | ||
components: [ | ||
{ | ||
label: 'Edit Grid', | ||
tableView: false, | ||
rowDrafts: false, | ||
key: 'editGrid', | ||
type: 'editgrid', | ||
input: true, | ||
components: [ | ||
{ | ||
label: 'Text Field', | ||
tableView: true, | ||
key: 'textField', | ||
type: 'textfield', | ||
input: true, | ||
validate : { | ||
required: true | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
label: 'Submit', | ||
showValidations: false, | ||
tableView: false, | ||
key: 'submit', | ||
type: 'button', | ||
input: true | ||
} | ||
], | ||
title: 'test20', | ||
display: 'form', | ||
name: 'test20', | ||
path: 'test20', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters