瀏覽代碼

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;