#2 -- Fix UI
All checks were successful
CI fuzzy controller / container-test-job (push) Successful in 1m2s
All checks were successful
CI fuzzy controller / container-test-job (push) Successful in 1m2s
This commit is contained in:
parent
67dc9d275d
commit
d1b6fe9787
@ -202,6 +202,7 @@ async function addAntecedent(parentElement, projectId, variableVal, termVal) {
|
||||
$(rowElement).append("<a href='#' class='btn btn-outline-dark m-2' onclick='removeAntecedent($(this))'>-</a>");
|
||||
}
|
||||
$(parentElement).append(rowElement);
|
||||
$(".selectpicker").selectpicker("refresh");
|
||||
}
|
||||
|
||||
async function addConsequent(parentElement, projectId, variableVal, termVal) {
|
||||
@ -226,6 +227,7 @@ async function addConsequent(parentElement, projectId, variableVal, termVal) {
|
||||
$(rowElement).append("<a href='#' class='btn btn-outline-dark m-2' onclick='removeConsequent($(this))'>-</a>");
|
||||
}
|
||||
$(parentElement).append(rowElement);
|
||||
$(".selectpicker").selectpicker("refresh");
|
||||
}
|
||||
|
||||
async function addAntecedentFromRule(parentElement, projectId, ruleContent) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user