Skip to content

Commit

Permalink
chore: update globalConfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
hetangmodi-crest committed Jan 9, 2025
1 parent 0533e39 commit fe160a6
Showing 1 changed file with 18 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"name": "example_input_one",
"description": "This is a description for Input One",
"title": "Example Input",
"title": "Example Input One",
"entity": [
{
"type": "text",
Expand All @@ -29,9 +29,16 @@
"required": true
},
{
"type": "interval",
"type": "text",
"field": "interval",
"label": "Interval",
"validators": [
{
"type": "regex",
"errorMsg": "Interval must be either a non-negative number, CRON interval or -1.",
"pattern": "^((?:-1|\\d+(?:\\.\\d+)?)|(([\\*\\d{1,2}\\,\\-\\/]+\\s){4}[\\*\\d{1,2}\\,\\-\\/]+))$"
}
],
"help": "Time interval of the data input, in seconds.",
"required": true
}
Expand Down Expand Up @@ -112,9 +119,16 @@
"required": true
},
{
"type": "interval",
"type": "text",
"field": "interval",
"label": "Interval",
"validators": [
{
"type": "regex",
"errorMsg": "Interval must be either a non-negative number, CRON interval or -1.",
"pattern": "^((?:-1|\\d+(?:\\.\\d+)?)|(([\\*\\d{1,2}\\,\\-\\/]+\\s){4}[\\*\\d{1,2}\\,\\-\\/]+))$"
}
],
"help": "Time interval of the data input, in seconds.",
"required": true
}
Expand Down Expand Up @@ -152,11 +166,7 @@
"label": "Status",
"field": "disabled"
}
],
"customRow": {
"type": "external",
"src": "custom_row"
}
]
},
"useInputToggleConfirmation": true
}
Expand Down

0 comments on commit fe160a6

Please sign in to comment.