Skip to content
Snippets Groups Projects
Commit c1845991 authored by buczekp's avatar buczekp
Browse files

[LMS-2181] refresh after changes to vocabulary terms (they may happen outside the grid)

SVN: 21226
parent da2edaec
No related branches found
No related tags found
No related merge requests found
......@@ -590,7 +590,10 @@ public class VocabularyTermGrid extends TypedTableGrid<VocabularyTermWithStats>
DatabaseModificationKind.createOrDelete(ObjectKind.SAMPLE),
DatabaseModificationKind.edit(ObjectKind.SAMPLE),
DatabaseModificationKind.createOrDelete(ObjectKind.PROPERTY_TYPE_ASSIGNMENT),
DatabaseModificationKind.edit(ObjectKind.PROPERTY_TYPE_ASSIGNMENT) };
DatabaseModificationKind.edit(ObjectKind.PROPERTY_TYPE_ASSIGNMENT),
// (unofficial) terms may also be created outside of the grid
DatabaseModificationKind.createOrDelete(ObjectKind.VOCABULARY_TERM),
DatabaseModificationKind.edit(ObjectKind.VOCABULARY_TERM) };
}
private void deleteTerms()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment