Ver Fonte

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

Marcelo Vilas Boas Correa Filho há 3 anos atrás
pai
commit
008ffd7705
1 ficheiros alterados com 1 adições e 1 exclusões
  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;