Comment out cache in getIssuesForEntityWithID

It seems like entity editor draws before the validator runs so the
rendered list is often one history change behind.
This commit is contained in:
Bryan Housel
2019-02-12 00:22:24 -05:00
parent 6cb1656cac
commit 4e6ade08b1
2 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -14,11 +14,11 @@ export function uiEntityIssues(context) {
var _entityID;
context.validator().on('reload.entity_issues', function() {
_selection.selectAll('.entity-issues')
.call(render);
update();
});
// context.validator().on('reload.entity_issues', function() {
// _selection.selectAll('.entity-issues')
// .call(render);
// update();
// });
function clamp(num, min, max) {