Skip to content
Snippets Groups Projects
Commit 6a4f02ba authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Fix Name: auto cut length of name, if it is greater than the max length

parent b2c82193
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ public class PredefinedExistingValueVerifier extends AbstractVerifier {
.addVerificationFix(stringValue.isInputValue() ? SHOW_INPUT_ENTRIES : SHOW_OUTPUT_ENTRIES)
.addVerificationFix(
VerificationFix.getBuilder()
.withFixName("Add predefined value \"" + missingStringValue + "\"")
.withFixName("Add pred. value \"" + missingStringValue + "\"")
.addAction(
Action.getBuilder()
.withActionType(ActionType.UPDATE)
......
......@@ -109,7 +109,7 @@ public class PredefinedMissingValueVerifier extends AbstractVerifier {
for (String value : missingStringValues) {
vreFactory.addVerificationFix(
VerificationFix.getBuilder()
.withFixName("Delete predefined value \"" + value + "\"")
.withFixName("Delete pred. value \"" + value + "\"")
.addAction(
Action.getBuilder()
.withActionScope(stringColumn.isInputColumn() ? INPUT_COLUMN : OUTPUT_COLUMN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment