Skip to content

Commit

Permalink
Fix [UI] context id value unexpectedly changed (iguazio#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-prokopchuk authored Nov 21, 2022
1 parent c824650 commit b2a826e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/igz_controls/services/validation.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,18 @@ such restriction.
pattern: /^[a-zA-Z0-9\-_.]+$/
}
]
},
supportLogs: {
contextId: [
generateRule.validCharacters('0-9'),
{
name: 'minValue',
label: $i18next.t('common:MIN', { lng: lng }) + ' 1',
pattern: function (value) {
return value >= 1
}
},
]
}
},
container: {
Expand Down

0 comments on commit b2a826e

Please sign in to comment.