Skip to content

Commit

Permalink
Allow uppercase characters for lookup table test lookup (#16909)
Browse files Browse the repository at this point in the history
  • Loading branch information
grotlue authored Oct 13, 2023
1 parent 96de525 commit e2bc176
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/issue-14373.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "fixed"
message = "Fix test lookup not accepting uppercase characters"

issues = ["14373"]
pulls = ["16909"]
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const LookupTableView = ({ table, cache, dataAdapter }: Props) => {
newValue.valid = event.target.value
&& event.target.value.replace(/\s/g, '').length > 0;

newValue.value = event.target.value.toLowerCase();
newValue.value = event.target.value;

switch (event.target.name) {
case 'purgekey':
Expand Down

0 comments on commit e2bc176

Please sign in to comment.