We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 60d752b + f8d0e74 commit 11b6af5Copy full SHA for 11b6af5
src/components/CIPipelineN/VariableDataTable/validations.ts
@@ -155,14 +155,6 @@ export const validateInputOutputVariableCell = ({
155
}
156
157
158
- // test for max length if variable is string
159
- if (key === 'val' && format === VariableTypeFormat.STRING && variableValue && !!value && value.length > 255) {
160
- return {
161
- errorMessages: [VARIABLE_DATA_TABLE_CELL_ERROR_MSGS.MAX_LENGTH_255],
162
- isValid: false,
163
- }
164
165
-
166
return { errorMessages: [], isValid: true }
167
168
0 commit comments