Skip to content

Commit

Permalink
LRQA-56060 Apply
Browse files Browse the repository at this point in the history
  • Loading branch information
timpak authored and brianchandotcom committed Feb 26, 2020
1 parent 5f6d28b commit 25522c4
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ definition {
if (isSet(maximumDocumentFrequency)) {
Type(
key_fieldLabel = "Maximum Document Frequency",
locator1 = "TextInput#GENERIC_TEXT_INPUT",
locator1 = "TextInput#GENERIC_NUMBER_INPUT",
value1 = "${maximumDocumentFrequency}");
}

Expand All @@ -217,21 +217,21 @@ definition {
if (isSet(maximumQueryTerms)) {
Type(
key_fieldLabel = "Maximum Query Terms",
locator1 = "TextInput#GENERIC_TEXT_INPUT",
locator1 = "TextInput#GENERIC_NUMBER_INPUT",
value1 = "${maximumQueryTerms}");
}

if (isSet(maximumWordLength)) {
Type(
key_fieldLabel = "Maximum Word Length",
locator1 = "TextInput#GENERIC_TEXT_INPUT",
locator1 = "TextInput#GENERIC_NUMBER_INPUT",
value1 = "${maximumWordLength}");
}

if (isSet(minimumDocumentFrequency)) {
Type(
key_fieldLabel = "Minimum Document Frequency",
locator1 = "TextInput#GENERIC_TEXT_INPUT",
locator1 = "TextInput#GENERIC_NUMBER_INPUT",
value1 = "${minimumDocumentFrequency}");
}

Expand All @@ -245,14 +245,14 @@ definition {
if (isSet(minimumTermFrequency)) {
Type(
key_fieldLabel = "Minimum Term Frequency",
locator1 = "TextInput#GENERIC_TEXT_INPUT",
locator1 = "TextInput#GENERIC_NUMBER_INPUT",
value1 = "${minimumTermFrequency}");
}

if (isSet(minimumWordLength)) {
Type(
key_fieldLabel = "Minimum Word Length",
locator1 = "TextInput#GENERIC_TEXT_INPUT",
locator1 = "TextInput#GENERIC_NUMBER_INPUT",
value1 = "${minimumWordLength}");
}

Expand Down

0 comments on commit 25522c4

Please sign in to comment.