Skip to content

Commit

Permalink
clear selected also unapproves code mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Moinat committed Mar 11, 2021
1 parent 60ff72f commit 7291f1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/ohdsi/usagi/ui/MappingTablePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,9 @@ public void clearSelected() {
for (int viewRow : table.getSelectedRows()) {
int modelRow = table.convertRowIndexToModel(viewRow);
tableModel.getCodeMapping(modelRow).getTargetConcepts().clear();
tableModel.getCodeMapping(modelRow).setUnchecked();
}
fireUpdateEventAll(SIMPLE_UPDATE_EVENT);
fireUpdateEventAll(MULTI_UPDATE_EVENT);
}

public void assignReviewersRandomly(String[] reviewers) {
Expand Down

0 comments on commit 7291f1c

Please sign in to comment.