Fix missing semi-colon

This commit is contained in:
SilentSpike
2020-02-12 21:27:08 +00:00
parent c82c57f8cb
commit 9364b1d637
+1 -1
View File
@@ -130,7 +130,7 @@ export function uiSelectionList(context) {
items.selectAll('.entity-name')
.text(function(d) {
// fetch latest entity
var entity = context.entity(d.id)
var entity = context.entity(d.id);
return utilDisplayName(entity);
});
}