-
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-4816: fixed email submission: data display issues (#4745)
* FIO-4816: fixed email submission: data display issues * corrected some points and added tetst * FIO-4816: fixed tests * fixed incorrect rebase issue * fixed test * fix test styles --------- Co-authored-by: AlexanderLihodievskiy <alexandrel@form.io> Co-authored-by: Travis Tidwell <travis@form.io> Co-authored-by: TanyaGashtold <61136841+TanyaGashtold@users.noreply.github.com> Co-authored-by: ICX\Tatsiana.Hashtold <tanya@form.io>
- Loading branch information
1 parent
d55f406
commit be88864
Showing
8 changed files
with
267 additions
and
50 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
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 |
---|---|---|
@@ -1,42 +1,42 @@ | ||
export default { | ||
title: "test checkbox", | ||
name: "testCheckbox", | ||
path: "testcheckbox", | ||
type: "form", | ||
display: "form", | ||
components: [ | ||
{ | ||
label: "Checkbox 1", | ||
inputType: "radio", | ||
tableView: true, | ||
defaultValue: false, | ||
key: "checkbox1", | ||
type: "checkbox", | ||
name: "radio", | ||
value: "value1", | ||
input: true, | ||
radio: false, | ||
}, | ||
{ | ||
label: "Checkbox 2", | ||
inputType: "radio", | ||
tableView: true, | ||
defaultValue: false, | ||
key: "checkbox2", | ||
type: "checkbox", | ||
name: "radio", | ||
value: "value2", | ||
input: true, | ||
}, | ||
{ | ||
label: "Checkbox", | ||
tableView: false, | ||
key: "checkbox", | ||
type: "checkbox", | ||
input: true, | ||
} | ||
], | ||
created: "2022-09-01T09:12:45.581Z", | ||
modified: "2022-09-05T08:51:16.048Z", | ||
machineName: "uubnbosxacwjzbk:testCheckbox", | ||
}; | ||
title: 'test checkbox', | ||
name: 'testCheckbox', | ||
path: 'testcheckbox', | ||
type: 'form', | ||
display: 'form', | ||
components: [ | ||
{ | ||
label: 'Checkbox 1', | ||
inputType: 'radio', | ||
tableView: true, | ||
defaultValue: false, | ||
key: 'checkbox1', | ||
type: 'checkbox', | ||
name: 'radio', | ||
value: 'value1', | ||
input: true, | ||
radio: false, | ||
}, | ||
{ | ||
label: 'Checkbox 2', | ||
inputType: 'radio', | ||
tableView: true, | ||
defaultValue: false, | ||
key: 'checkbox2', | ||
type: 'checkbox', | ||
name: 'radio', | ||
value: 'value2', | ||
input: true, | ||
}, | ||
{ | ||
label: 'Checkbox', | ||
tableView: false, | ||
key: 'checkbox', | ||
type: 'checkbox', | ||
input: true, | ||
} | ||
], | ||
created: '2022-09-01T09:12:45.581Z', | ||
modified: '2022-09-05T08:51:16.048Z', | ||
machineName: 'uubnbosxacwjzbk:testCheckbox', | ||
}; |