Merge branch 'increase-series-length'

This commit is contained in:
Mohit Panjwani
2021-12-29 18:20:44 +05:30
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':