increase series param length to 6

This commit is contained in:
Mohit Panjwani
2021-12-16 20:13:49 +05:30
parent 4a85a5d2ab
commit d2dcc44817
3 changed files with 6 additions and 6 deletions

View File

@ -386,8 +386,8 @@ function removeComponent(component) {
function onUpdate(val, element) {
switch (element.name) {
case 'SERIES':
if (val.length >= 4) {
val = val.substring(0, 4)
if (val.length >= 6) {
val = val.substring(0, 6)
}
break
case 'DELIMITER':