소스 검색

fix: not displaying operator select if the las operator is semicolumn

Marcelo Vilas Boas Correa Filho 3 년 전
부모
커밋
008ffd7705
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/accessibleUI/modules/operations/operations.js

+ 1 - 1
js/accessibleUI/modules/operations/operations.js

@@ -190,7 +190,7 @@ export function updateOperationOperator (operationHash, operatorHash, newValue)
             else if (operator.operator.name === ';' 
                 && (operation.operators.indexOf(operator) !== (operation.operators.length - 1))
                 && operationTypeSelect.parentElement.nextElementSibling != null) {
-                    let indexOfOperator = operation.operators.indexOf(operator);
+                    let indexOfOperator = operation.operators.indexOf(operator) + 1;
                     operation.operators.splice(indexOfOperator);
 
                     let elementSibling = operationTypeSelect.parentElement.nextElementSibling;