-
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-7580,6475: fixed error events issues and an issue where general s…
…erver errors quickly disappear from ui
- Loading branch information
1 parent
3901e86
commit 2190aeb
Showing
3 changed files
with
114 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export default { | ||
components: [ | ||
{ | ||
label: 'Name', | ||
applyMaskOn: 'change', | ||
tableView: true, | ||
validate: { | ||
required: true, | ||
minLength: 2, | ||
maxLength: 5, | ||
}, | ||
key: 'name', | ||
type: 'textfield', | ||
input: true, | ||
}, | ||
{ | ||
type: 'button', | ||
showValidations: false, | ||
label: 'Submit', | ||
key: 'submit', | ||
input: true, | ||
tableView: false, | ||
}, | ||
], | ||
}; | ||
|